master
Evan Chen 2021-12-22 00:00:23 +08:00
parent 48b66258ea
commit 3e574be3c4
1 changed files with 19 additions and 3 deletions

View File

@ -1,12 +1,28 @@
package calendar
import (
"kumoly.io/kumoly/app/store"
"kumoly.io/kumoly/app/util"
)
type Service struct{}
func (srv Service) GetName() string { return "calendar.Service" }
func (srv Service) GetDependencies() []string { return []string{} }
func (srv Service) GetDependencies() []string { return []string{"server.Service"} }
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 }
func (srv Service) Init() error {
l = util.Klog.With().Str("mod", "auth").Logger()
l.Debug().Msg("Migrating database for calendar.Service ...")
if err := store.Migrate(&Calendar{}, &EventGroup{}, &Event{}); err != nil {
l.Error().Err(err).Msg("Migrating database")
return err
}
return nil
}
func (srv Service) Load() error { return nil }