ban_ip.go 154 B

1234567
  1. package model
  2. type BanIP struct {
  3. IP string `json:"ip"`
  4. Attempts int `json:"attempts"`
  5. ExpiredAt int64 `json:"expired_at" gorm:"index"`
  6. }