13 lines
172 B
Haskell
13 lines
172 B
Haskell
|
module Mock.Blog.URL (
|
||
|
simple
|
||
|
) where
|
||
|
|
||
|
import Blog.URL (URL(..))
|
||
|
|
||
|
simple :: URL
|
||
|
simple = URL {
|
||
|
cards = Nothing
|
||
|
, comments = Nothing
|
||
|
, rss = Nothing
|
||
|
}
|