mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-02-17 06:01:32 +08:00
13 lines
193 B
Go
13 lines
193 B
Go
package api
|
|
|
|
// auth
|
|
|
|
type GenericAuthRequest struct {
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
}
|
|
|
|
type GenericAuthResponse struct {
|
|
Token string `json:"token"`
|
|
}
|