{-# LANGUAGE UnicodeSyntax #-} import qualified Data.Collections as C import MiseRafturai import Network.HTTP.Lucu main ∷ IO () main = let config = defaultConfig { cnfServerPort = "9999" } tree ∷ ResourceTree tree = C.fromList [ ([], nonGreedy miseRafturai) ] in do putStrLn "Access http://localhost:9999/ with your browser." runHttpd config $ resourceMap tree