From bbc936ba5d244567cf8fdb0b4e2fc3f9620ebe10 Mon Sep 17 00:00:00 2001 From: d3m0k1d Date: Tue, 24 Feb 2026 18:05:58 +0300 Subject: [PATCH] fix: linter --- internal/config/types.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/internal/config/types.go b/internal/config/types.go index c630b6d..62d3e5f 100644 --- a/internal/config/types.go +++ b/internal/config/types.go @@ -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"` }