Files
wallet-go-api/pkg/models/auth.go
Fran Jurmanović cc98d0cf49 fixes on structuring
2021-05-15 22:23:30 +02:00

15 lines
172 B
Go

package models
type TokenModel struct {
Token string `json:"token"`
}
type LoginModel struct {
Email string
Password string
}
type AuthModel struct {
Id string
}