mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-26 21:45:52 +00:00
cc55bf3e6b
* 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)
17 lines
331 B
Haskell
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
|