From 7ff6e74148dc09b5d6ac13d3ff07e4c92a10ccc9 Mon Sep 17 00:00:00 2001 From: Ryan Cavicchioni Date: Thu, 8 Sep 2022 01:01:02 -0500 Subject: [PATCH] Remove weather handler config struct --- bot/config.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bot/config.go b/bot/config.go index 3b17cfa..b22da79 100644 --- a/bot/config.go +++ b/bot/config.go @@ -19,17 +19,12 @@ type ( HandlerConfig struct { Reaction ReactionConfig `mapstructure:"reaction"` - Weather WeatherConfig `mapstructure:"weather"` } ReactionConfig struct { Emojis []string Channels []string } - - WeatherConfig struct { - Token string `mapstructure:"token"` - } ) func NewConfig() Config {