8295d8755e
* Clean up import declarations to only use qualified when necessary * Remove unused imports
17 lines
758 B
Haskell
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 " └────────────────────────────────────────────┘"
|