package service import "git.sxidc.com/go-framework/baize/framework/core/application" type Service interface { Init(appInstance *application.App) error Destroy() error } var RegisteredServices = []Service{ mockService, }