mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
13 lines
224 B
Go
13 lines
224 B
Go
package model
|
|
|
|
type Auth struct {
|
|
Model
|
|
|
|
Name string `json:"name"`
|
|
Password string `json:"-"`
|
|
Status bool `json:"status" gorm:"default:1"`
|
|
}
|
|
|
|
type AuthToken struct {
|
|
Token string `json:"token"`
|
|
}
|