mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-06-17 09:09:36 +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"`
|
||
|
}
|