13 lines
541 B
Go
13 lines
541 B
Go
|
package calendar
|
||
|
|
||
|
type Service struct{}
|
||
|
|
||
|
func (srv Service) GetName() string { return "calendar.Service" }
|
||
|
func (srv Service) GetDependencies() []string { return []string{} }
|
||
|
func (srv Service) IsService() bool { return false }
|
||
|
func (srv Service) Init() error { return nil }
|
||
|
func (srv Service) Load() error { return nil }
|
||
|
func (srv Service) Main() error { return nil }
|
||
|
func (srv Service) Del() {}
|
||
|
func (srv Service) Health() error { return nil }
|