Files
wallet-go-api/pkg/models/auth.go
2021-05-16 17:43:45 +02:00

15 lines
157 B
Go

package models
type Token struct {
Token string `json:"token"`
}
type Login struct {
Email string
Password string
}
type Auth struct {
Id string
}