Files
simplex-chat/definitions/app/api-docs/Main.hs
Evgeny Poberezkin cc55bf3e6b Different approach to commands (#34)
* different approach to command types (WIP)

* PartyProtocol class and other commands

* pretty-print scenarion

* remove old files

* remove unused prf/predicate templates

* remove NoImplicitePrelude from doctest (although there are no doctests atm)
2020-05-31 21:51:15 +01:00

17 lines
331 B
Haskell

module Main where
import Simplex.Messaging.ServerAPI
import Servant
import Servant.Docs
apiDocs :: API
apiDocs = docsWith
defaultDocOptions
[serverApiIntro]
serverApiExtra
(Proxy :: Proxy ServerAPI)
main :: IO ()
main = writeFile "../simplex-messaging-api.md" $ markdown apiDocs