add profile struct

This commit is contained in:
cyber-dream 2023-01-15 17:03:31 +03:00
parent 982b60bde6
commit 8a16a26b35

View File

@ -18,13 +18,17 @@ type RedirResp struct {
}
type LauncherSession struct {
// Username string
// Username string
// DiscordId string
SessionToken string
InstallId string
Expiry time.Time
}
type ProfileResp struct {
Username string
}
type ValidateReq struct {
LauncherToken string
}