mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-10 18:05:48 +02:00
7 lines
154 B
Go
7 lines
154 B
Go
package model
|
|
|
|
type BanIP struct {
|
|
IP string `json:"ip"`
|
|
Attempts int `json:"attempts"`
|
|
ExpiredAt int64 `json:"expired_at" gorm:"index"`
|
|
}
|