vaulterm/server/app/auth/schema.go

7 lines
112 B
Go

package auth
type LoginSchema struct {
Username string `json:"username"`
Password string `json:"password"`
}