diff options
Diffstat (limited to 'app/SlackBuilder/Config.hs')
| -rw-r--r-- | app/SlackBuilder/Config.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/SlackBuilder/Config.hs b/app/SlackBuilder/Config.hs index 6e093a7..5168666 100644 --- a/app/SlackBuilder/Config.hs +++ b/app/SlackBuilder/Config.hs @@ -11,6 +11,7 @@ data Settings = Settings { ghToken :: !Text , repository :: !FilePath , branch :: Text + , downloadURL :: Text } deriving (Eq, Show) settingsCodec :: Toml.TomlCodec Settings @@ -18,3 +19,4 @@ settingsCodec = Settings <$> Toml.text "gh_token" .= ghToken <*> Toml.string "repository" .= repository <*> Toml.text "branch" .= branch + <*> Toml.text "download_url" .= downloadURL |
