Refactor Steam login types for improved organization
All checks were successful
CI - Build and Push / Build and Push Docker Image (push) Successful in 43s

This commit is contained in:
2025-10-07 17:45:42 +08:00
parent 3e90db888d
commit 8cd358fcda

View File

@@ -13,11 +13,16 @@ type (
PingResp { PingResp {
ok bool `json:"ok"` ok bool `json:"ok"`
} }
// Steam Login Types )
type (
SteamLoginInitReq {} SteamLoginInitReq {}
SteamLoginInitResp { SteamLoginInitResp {
RedirectUrl string `json:"redirectUrl"` RedirectUrl string `json:"redirectUrl"`
} }
)
type (
SteamLoginCallbackReq { SteamLoginCallbackReq {
OpenidMode string `form:"openid.mode"` OpenidMode string `form:"openid.mode"`
OpenidNs string `form:"openid.ns"` OpenidNs string `form:"openid.ns"`