mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-12-15 17:41:10 +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"`
|
||
|
|
}
|