mirror of
https://github.com/FJurmanovic/wallet-go-api.git
synced 2026-02-06 06:08:16 +00:00
19 lines
245 B
Go
19 lines
245 B
Go
package models
|
|
|
|
type Token struct {
|
|
Token string `json:"token"`
|
|
}
|
|
|
|
type Login struct {
|
|
Email string `form:"email"`
|
|
Password string `form:"password"`
|
|
}
|
|
|
|
type Auth struct {
|
|
Id string
|
|
}
|
|
|
|
type CheckToken struct {
|
|
Valid bool `json:"valid"`
|
|
}
|