Files
2026-05-03 07:59:03 +02:00

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"`
}