fix: linter
All checks were successful
build / build (push) Successful in 2m23s

This commit is contained in:
d3m0k1d
2026-02-24 18:05:58 +03:00
parent 5cc61aca75
commit bbc936ba5d

View File

@@ -24,13 +24,13 @@ type Rules struct {
}
type Rule struct {
Name string `toml:"name"`
ServiceName string `toml:"service"`
Path string `toml:"path"`
Status string `toml:"status"`
Method string `toml:"method"`
MaxRetry int `toml:"max_retry"`
BanTime string `toml:"ban_time"`
Name string `toml:"name"`
ServiceName string `toml:"service"`
Path string `toml:"path"`
Status string `toml:"status"`
Method string `toml:"method"`
MaxRetry int `toml:"max_retry"`
BanTime string `toml:"ban_time"`
Action []Action `toml:"action"`
}