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