mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-02-18 06:31:29 +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"`
|
||
|
}
|