14 lines
147 B
Go
14 lines
147 B
Go
|
package models
|
||
|
|
||
|
import (
|
||
|
"gorm.io/gorm"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type Blocklist struct {
|
||
|
gorm.Model
|
||
|
IP string
|
||
|
Reason string
|
||
|
BlockedAt time.Time
|
||
|
}
|