Files
st/server/api/v1/app/enter.go
2026-02-11 14:55:41 +08:00

15 lines
280 B
Go

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