package
Version:
v0.0.0-...-0575462
Opens a new window with list of versions in this module.
Published: Jan 12, 2024
License: Apache-2.0
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Group struct {
ID string `json:"id"`
Account string `json:"account"`
Name string `json:"name"`
Avatar string `json:"avatar"`
}
type LoginInput struct {
Account string `json:"account"`
Password string `json:"password"`
}
type LoginPayload struct {
User *User `json:"user"`
Token string `json:"token"`
}
type LogoutInput struct {
Account string `json:"account"`
}
type LogoutPayload struct {
Success bool `json:"success"`
}
type RegisterInput struct {
Account string `json:"account"`
Password string `json:"password"`
}
type RegisterPayload struct {
User *User `json:"user"`
Token string `json:"token"`
}
type User struct {
ID string `json:"id"`
Account string `json:"account"`
Name string `json:"name"`
Avatar string `json:"avatar"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.