mirror of
https://github.com/haskell-servant/servant-ekg.git
synced 2024-11-23 03:29:43 +01:00
stylish
This commit is contained in:
parent
52585c70e6
commit
04fce530d6
1 changed files with 18 additions and 18 deletions
10
test/test.hs
10
test/test.hs
|
@ -1,10 +1,10 @@
|
|||
{-# LANGUAGE DataKinds #-}
|
||||
{-# LANGUAGE DeriveGeneric #-}
|
||||
{-# LANGUAGE OverlappingInstances #-}
|
||||
{-# LANGUAGE OverloadedStrings #-}
|
||||
{-# LANGUAGE PolyKinds #-}
|
||||
{-# LANGUAGE TypeFamilies #-}
|
||||
{-# LANGUAGE DeriveGeneric #-}
|
||||
{-# LANGUAGE TypeOperators #-}
|
||||
{-# LANGUAGE OverloadedStrings #-}
|
||||
{-# LANGUAGE OverlappingInstances #-}
|
||||
|
||||
import Control.Concurrent
|
||||
import Data.Aeson
|
||||
|
@ -14,8 +14,8 @@ import Data.Text
|
|||
import GHC.Generics
|
||||
import Network.Wai
|
||||
import Network.Wai.Handler.Warp
|
||||
import System.Metrics
|
||||
import Servant
|
||||
import System.Metrics
|
||||
|
||||
import Servant.Ekg
|
||||
|
||||
|
@ -56,7 +56,7 @@ server = helloH :<|> postGreetH :<|> deleteGreetH
|
|||
helloH name (Just False) = return . Greet $ "Hello, " <> name
|
||||
helloH name (Just True) = return . Greet . toUpper $ "Hello, " <> name
|
||||
|
||||
postGreetH greet = return greet
|
||||
postGreetH = return
|
||||
|
||||
deleteGreetH _ = return ()
|
||||
|
||||
|
|
Loading…
Reference in a new issue