pcm-ai4m/api/v1/system/enter.go

17 lines
441 B
Go

package system
import "ai4m/service"
type ApiGroup struct {
ScreenApi
SFTPApi
}
var (
screenService = service.SvcGroupApp.SystemServiceGroup.ScreenService
taskService = service.SvcGroupApp.SystemServiceGroup.TaskService
aiService = service.SvcGroupApp.SystemServiceGroup.AiService
clusterService = service.SvcGroupApp.SystemServiceGroup.ClusterService
sftpService = service.SvcGroupApp.SystemServiceGroup.SFTPService
)