Permalink
Switch branches/tags
Nothing to show
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
8 lines (6 sloc) 164 Bytes
package request
// NewUserRequest - Request Body for New User
type NewUserRequest struct {
Username string `json:"username"`
Password string `json:"password"`
}