From 8a16a26b35c1aa60fe3c028f4f430eef39043da1 Mon Sep 17 00:00:00 2001 From: cyber-dream Date: Sun, 15 Jan 2023 17:03:31 +0300 Subject: [PATCH] add profile struct --- auth/auth.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/auth/auth.go b/auth/auth.go index 8330de8..be7c0ba 100644 --- a/auth/auth.go +++ b/auth/auth.go @@ -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 }