vaulterm/server/app/auth/schema.go

7 lines
112 B
Go
Raw Normal View History

2024-11-07 19:07:41 +00:00
package auth
type LoginSchema struct {
Username string `json:"username"`
Password string `json:"password"`
}