9 lines
103 B
Haskell
9 lines
103 B
Haskell
module Main where
|
|
|
|
import Web.Scotty (scotty)
|
|
|
|
import Lisa (app)
|
|
|
|
main :: IO ()
|
|
main = scotty 8080 app
|