From 71cab9824b5cfae0405ce962bf5b2417bdaf7fe9 Mon Sep 17 00:00:00 2001 From: hellerve Date: Mon, 2 Jan 2017 16:22:08 +0100 Subject: [PATCH] only use key once --- bird/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bird/config.go b/bird/config.go index 89bf0d8..e3efb07 100644 --- a/bird/config.go +++ b/bird/config.go @@ -16,7 +16,7 @@ type BirdConfig struct { } type RateLimitConfig struct { - Reqs int `toml:"requests_per_minute"` + Reqs int Max int `toml:"requests_per_minute"` Enabled bool }