123456789101112131415161718192021222324252627 |
- package service
- import "git.sxidc.com/go-framework/baize/framework/core/application"
- const (
- dbSchema = "test"
- )
- type Service interface {
- Init(appInstance *application.App) error
- Destroy() error
- }
- var RegisteredServices = []Service{
- versionService,
- configurationService,
- sqlExecutorService,
- operateLogService,
- classService,
- studentService,
- identityService,
- familyService,
- classAndStudentService,
- studentAndFamilyService,
- studentAndIdentityService,
- studentAndHobbyService,
- }
|