mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-06-21 17:12:47 +02:00
19 lines
266 B
Go
19 lines
266 B
Go
package api
|
|
|
|
// error
|
|
|
|
type ErrorResponse struct{
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
// auth
|
|
|
|
type GenericAuthRequest struct {
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
}
|
|
|
|
type GenericAuthResponse struct {
|
|
Token string `json:"token"`
|
|
}
|