X-Git-Url: http://git.cielonegro.org/gitweb.cgi?p=Lucu.git;a=blobdiff_plain;f=examples%2FImplantedSmall.hs;h=f7e8856d6b350ab31320e94315e51059a930e2e7;hp=a985cae482d20037d125cda916bd3dbef756f33b;hb=9be2b946657c536a4363a076235f70728be087c4;hpb=3baf479eba12bc3e9c4ef966df770cd70aa5cd81 diff --git a/examples/ImplantedSmall.hs b/examples/ImplantedSmall.hs index a985cae..f7e8856 100644 --- a/examples/ImplantedSmall.hs +++ b/examples/ImplantedSmall.hs @@ -1,13 +1,14 @@ {-# LANGUAGE UnicodeSyntax #-} +import qualified Data.Collections as C import Network.HTTP.Lucu import SmallFile main ∷ IO () -main = let config = defaultConfig { cnfServerPort = "9999" } - resources = mkResTree [ ([], smallFile) ] +main = let config = defaultConfig { cnfServerPort = "9999" } + tree ∷ ResourceTree + tree = C.fromList [ ([], nonGreedy smallFile) ] in do putStrLn "Access http://localhost:9999/ with your browser." - runHttpd config resources [] - \ No newline at end of file + runHttpd config $ resourceMap tree