mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-28 16:49:39 +07:00
7 lines
112 B
Go
7 lines
112 B
Go
package auth
|
|
|
|
type LoginSchema struct {
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
}
|