summaryrefslogtreecommitdiffstats
path: root/src/Much/API/Config.hs
blob: 2e3b1cc662f0eda6d76df7bd4af4572663974078 (plain)
1
2
3
4
5
6
7
8
9
10
11
module Much.API.Config where

data Config = Config
    { socketPath :: FilePath
    }

emptyConfig :: Config
emptyConfig =
    Config
      { socketPath = "/tmp/much.api.sock"
      }