This commit is contained in:
daru
2022-04-14 21:27:18 +02:00
parent 0cc4c3245f
commit 9dfe6424c8
2 changed files with 4 additions and 1 deletions

View File

@@ -5,11 +5,13 @@ import "time"
type UserData struct {
Username string `json:"username"`
MalId int `json:"malId"`
Secret string `json:"secret"`
}
type RegisterData struct {
Username string `json:"username"`
MalId int `json:"malId"`
Secret string `json:"secret"`
Sauce string `json:"sauce"`
}