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