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)
This commit is contained in:
Evgeny Poberezkin
2020-05-31 21:51:15 +01:00
committed by GitHub
parent dc7835992c
commit cc55bf3e6b
16 changed files with 525 additions and 976 deletions
+16
View File
@@ -0,0 +1,16 @@
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