purescript-httpurple/docs/Examples/HelloWorld/Main.purs
Connor Prussin 8295d8755e
Clean up imports (#185)
* Clean up import declarations to only use qualified when necessary

* Remove unused imports
2021-11-18 22:16:35 -08:00

17 lines
758 B
Haskell

module Examples.HelloWorld.Main where
import Prelude
import Effect.Console (log)
import HTTPure (ServerM, serve, ok)
-- | Boot up the server
main :: ServerM
main =
serve 8080 (const $ ok "hello world!") do
log " ┌────────────────────────────────────────────┐"
log " │ Server now up on port 8080 │"
log " │ │"
log " │ To test, run: │"
log " │ > curl localhost:8080 # => hello world! │"
log " └────────────────────────────────────────────┘"