From 05582de2fdea1e6132237c3de67afe22ab5cdf70 Mon Sep 17 00:00:00 2001 From: Waffle Date: Tue, 17 Nov 2020 22:43:34 +0300 Subject: [PATCH] Add fixme to #[allow] attr in api_url --- src/bot/api_url.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bot/api_url.rs b/src/bot/api_url.rs index 8c33a38f..ed10afc8 100644 --- a/src/bot/api_url.rs +++ b/src/bot/api_url.rs @@ -1,6 +1,7 @@ #[derive(Debug, Clone)] pub(crate) enum ApiUrl { Default, + // FIXME: remove #[allow] when we use this variant #[allow(dead_code)] Custom(reqwest::Url), }