You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package v1 |
|
|
|
// ScoreRequest . |
|
type ScoreRequest struct { |
|
Name string `json:"name" form:"name" validate:"required"` |
|
} |
|
|
|
// ScoreResponse . |
|
type ScoreResponse struct { |
|
Name string `json:"name"` |
|
Score float32 `json:"score"` |
|
}
|
|
|