文件名称:servant-generic:指定带有记录的仆人路线
文件大小:10KB
文件格式:ZIP
更新时间:2024-05-23 01:01:31
Haskell
该软件包已合并到仆人0.14.1中,请使用它(如果有)。 tl; dr 用简单的记录而不是:<|>树指定Servant API。 data Site route = Site { about :: route :- " about " :> Get '[ PlainText ] Text , faq :: route :- " faq " :> Get '[ PlainText ] Text } deriving Generic siteServer :: Site AsServer siteServer = Site { about = return " about " , faq = return " faq " } type Api = ToServant ( Site AsApi ) main :: IO () main = ru
【文件预览】:
servant-generic-master
----.gitignore(5B)
----stack.yaml(20B)
----README.md(6KB)
----Setup.hs(46B)
----default.nix(158B)
----examples()
--------Basic.hs(2KB)
----LICENSE(1KB)
----servant-generic.cabal(1KB)
----src()
--------Servant()
----.travis.yml(9KB)