package config import ( "github.com/zeromicro/go-zero/core/stores/redis" "github.com/zeromicro/go-zero/rest" ) type Config struct { rest.RestConf Steam SteamConfig JWT JWTConfig Redis redis.RedisConf } type SteamConfig struct { CallbackURL string FrontendCallbackURL string } type JWTConfig struct { Secret string Issuer string ExpiresIn int64 }