Feat: add storage block(first methods to db, migrations, models) add nginx parser with regular expression, add to deps sqlite driver
All checks were successful
CI.yml / build (push) Successful in 1m51s

This commit is contained in:
d3m0k1d
2026-01-13 16:53:46 +03:00
parent fb66a23e33
commit b63da17043
6 changed files with 128 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package storage
type LogEntry struct {
Service string
IP string
Path *string
Status *string
Method *string
Reason *string
}
type Ban struct {
IP string
Reason *string
}