app/calendar/service.go

13 lines
541 B
Go
Raw Normal View History

2021-12-21 11:44:27 +00:00
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 }