add recoil store
This commit is contained in:
parent
580449440a
commit
2e4b8b9823
10 changed files with 225 additions and 68 deletions
|
@ -20,6 +20,19 @@ type GetUserResponse struct {
|
|||
Links []string `json:"links"`
|
||||
}
|
||||
|
||||
type GetMeResponse struct {
|
||||
ID xid.ID `json:"id"`
|
||||
Username string `json:"username"`
|
||||
DisplayName *string `json:"display_name"`
|
||||
Bio *string `json:"bio"`
|
||||
AvatarSource *string `json:"avatar_source"`
|
||||
AvatarURL *string `json:"avatar_url"`
|
||||
Links []string `json:"links"`
|
||||
|
||||
Discord *string `json:"discord"`
|
||||
DiscordUsername *string `json:"discord_username"`
|
||||
}
|
||||
|
||||
type PartialMember struct {
|
||||
ID xid.ID `json:"id"`
|
||||
Name string `json:"name"`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue