8 lines
170 B
Haskell
8 lines
170 B
Haskell
|
|
module Web.Controller.Health where
|
||
|
|
|
||
|
|
import Web.Controller.Prelude
|
||
|
|
import Web.Types
|
||
|
|
|
||
|
|
instance Controller HealthController where
|
||
|
|
action HealthAction = renderPlain "ok"
|