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, }