dashboard-v2/app/http/session/sessiondata.go
Ryan aed0f28f13
Migrate to svelte for frontend (#9)
* Svelte: WIP

* WIP

* WIP

* WIP

* WIP

* WIP

* Finished

* Remove redundant code

* Fix typo

* Re-add routes

* Form margin

* Mobile nicities

* Mobile changed

* Increase keepalvie

* Update Guild.svelte

* Update Whitelabel.svelte

* Whitelabel changes
2021-06-30 15:40:55 +01:00

11 lines
287 B
Go

package session
type SessionData struct {
AccessToken string `json:"access_token"`
Expiry int64 `json:"expiry"`
RefreshToken string `json:"refresh_token"`
Name string `json:"name"`
Avatar string `json:"avatar_hash"`
HasGuilds bool `json:"has_guilds"`
}