18 lines
332 B
Haskell
18 lines
332 B
Haskell
{-# LANGUAGE DataKinds #-}
|
|
{-# LANGUAGE TypeFamilies #-}
|
|
{-# LANGUAGE TypeOperators #-}
|
|
module T6 where
|
|
|
|
import Network.Wai
|
|
import Servant
|
|
|
|
type API = "code" :> Raw
|
|
|
|
api :: Proxy API
|
|
api = Proxy
|
|
|
|
server :: Server API
|
|
server = serveDirectory "tutorial"
|
|
|
|
app :: Application
|
|
app = serve api EmptyConfig server
|