moved LoginResult in types

This commit is contained in:
2021-09-24 15:54:03 +02:00
parent f59f3183f2
commit 9cfc4da5f3
3 changed files with 9 additions and 9 deletions

View File

@@ -40,3 +40,8 @@ type Directory struct {
type JWTClaims struct {
jwt.StandardClaims
}
type LoginResult struct {
Token string `json:"token"`
Successful bool `json:"successful"`
}