blob: 852f44c7400368625d1adef42cbcb15ee9c72c6a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
module Main where
import Documentation.Haddock (haddock)
import ResponseFile (expandResponse)
import System.Environment (getArgs)
main :: IO ()
main = getArgs >>= expandResponse >>= haddock
|