| 123456789101112131415161718192021222324 |
- package service
- import (
- "git.sxidc.com/go-framework/baize/framework/core/application"
- )
- const (
- dbSchema = "pcs"
- )
- type Service interface {
- Init(appInstance *application.App) error
- Destroy() error
- }
- var RegisteredServices = []Service{
- /* HAC: REGISTER SERVICE */
- versionService,
- sqlExecutorService,
- configurationService,
- operateLogService,
- shopDecorationService,
- /* HAC: END REGISTER SERVICE */
- }
|