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 5168666..d7652e8 100644 --- a/app/SlackBuilder/Config.hs +++ b/app/SlackBuilder/Config.hs @@ -12,6 +12,7 @@ data Settings = Settings , repository :: !FilePath , branch :: Text , downloadURL :: Text + , remotePath :: Text } deriving (Eq, Show) settingsCodec :: Toml.TomlCodec Settings @@ -20,3 +21,4 @@ settingsCodec = Settings <*> Toml.string "repository" .= repository <*> Toml.text "branch" .= branch <*> Toml.text "download_url" .= downloadURL + <*> Toml.text "remote_path" .= remotePath |
