blob: 0a450685b442c9ca142df9c7dc5fb7c45eebac72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module Much.API.Config where
import Data.Default
data Config = Config
{ socketPath :: FilePath
}
instance Default Config where
def =
Config
{ socketPath = "/tmp/much.api.sock"
}
|