]> gitweb @ CieloNegro.org - Lucu.git/blobdiff - examples/ImplantedSmall.hs
use time-http 0.5
[Lucu.git] / examples / ImplantedSmall.hs
index a985cae482d20037d125cda916bd3dbef756f33b..2f8f066d8e2a8681385ba95e63e85de58caa17b7 100644 (file)
@@ -1,13 +1,17 @@
 {-# LANGUAGE
     UnicodeSyntax
   #-}
+import qualified Data.Collections as C
+import Data.Default
+import Network
 import Network.HTTP.Lucu
+import Prelude.Unicode
 import SmallFile
 
 main ∷ IO ()
-main = let config    = defaultConfig { cnfServerPort = "9999" }
-           resources = mkResTree [ ([], smallFile) ]
+main = let config = def { 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
+            withSocketsDo ∘ runHttpd config $ resourceMap tree