19 lines
297 B
Go
19 lines
297 B
Go
package rest
|
|
|
|
type HTTPError struct {
|
|
Error string
|
|
}
|
|
|
|
type Msg struct {
|
|
Text string
|
|
}
|
|
|
|
type Credentials struct {
|
|
Email string `json:"email" binding:"required" example:"user1"`
|
|
Password string `json:"password" binding:"required" example:"password1"`
|
|
}
|
|
|
|
type Session struct {
|
|
Email string
|
|
}
|