summaryrefslogtreecommitdiffstats
path: root/src/Much/API/Config.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Much/API/Config.hs')
-rw-r--r--src/Much/API/Config.hs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Much/API/Config.hs b/src/Much/API/Config.hs
index 2e3b1cc..0a45068 100644
--- a/src/Much/API/Config.hs
+++ b/src/Much/API/Config.hs
@@ -1,11 +1,13 @@
module Much.API.Config where
+import Data.Default
+
data Config = Config
{ socketPath :: FilePath
}
-emptyConfig :: Config
-emptyConfig =
+instance Default Config where
+ def =
Config
{ socketPath = "/tmp/much.api.sock"
}