13 lines
232 B
Haskell
13 lines
232 B
Haskell
module Mock.Blog.Path (
|
|
simple
|
|
) where
|
|
|
|
import Blog.Path (Path(..))
|
|
|
|
simple :: Path
|
|
simple = Path {
|
|
articlesPath = "articles"
|
|
, pagesPath = Nothing
|
|
, remarkableConfig = Nothing
|
|
, root = "/home/test/blog"
|
|
}
|