Files
st/server/api/v1/app/enter.go
2026-02-11 23:44:09 +08:00

17 lines
310 B
Go

package app
import "git.echol.cn/loser/st/server/service"
type ApiGroup struct {
AuthApi
CharacterApi
WorldInfoApi
ExtensionApi
RegexScriptApi
}
var (
authService = service.ServiceGroupApp.AppServiceGroup.AuthService
characterService = service.ServiceGroupApp.AppServiceGroup.CharacterService
)