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.hs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Much/API/Config.hs b/src/Much/API/Config.hs
new file mode 100644
index 0000000..2e3b1cc
--- /dev/null
+++ b/src/Much/API/Config.hs
@@ -0,0 +1,11 @@
+module Much.API.Config where
+
+data Config = Config
+ { socketPath :: FilePath
+ }
+
+emptyConfig :: Config
+emptyConfig =
+ Config
+ { socketPath = "/tmp/much.api.sock"
+ }