Files
BanForge/internal/storage/models.go
d3m0k1d 791d64ae4d
Some checks failed
build / build (push) Has been cancelled
feat: Recode logic for add logs to db
2026-01-22 00:09:56 +03:00

19 lines
401 B
Go

package storage
type LogEntry struct {
ID int `db:"id"`
Service string `db:"service"`
IP string `db:"ip"`
Path string `db:"path"`
Status string `db:"status"`
Method string `db:"method"`
CreatedAt string `db:"created_at"`
}
type Ban struct {
ID int `db:"id"`
IP string `db:"ip"`
Reason string `db:"reason"`
BannedAt string `db:"banned_at"`
}