8 lines
245 B
Go
8 lines
245 B
Go
package rest
|
|
|
|
// BanishRequest is the request body of POST /api/v1/admin/race/banish.
|
|
// RaceName must identify an existing race in the engine roster.
|
|
type BanishRequest struct {
|
|
RaceName string `json:"race_name" binding:"required,notblank"`
|
|
}
|