This repository has been archived on 2026-07-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ihp-railiance-probe/Web/Routes.hs

17 lines
344 B
Haskell

module Web.Routes where
import IHP.RouterPrelude
import Generated.Types
import Web.Types
instance CanRoute HealthController where
parseRoute' = do
_ <- string "/healthz"
endOfInput
pure HealthAction
instance HasPath HealthController where
pathTo HealthAction = "/healthz"
instance AutoRoute ProbesController