SimpleX-Chat/apps/simplex-chat/Main.hs
Evgeny Poberezkin 86fe28f1ed
core: chat hooks allowing to extend or customize chat core (#3953)
* core: chat hooks allowing to extend or customize chat core

* update

* json

* custom response

* user in db queries
2024-03-29 18:30:17 +00:00

8 lines
235 B
Haskell

module Main where
import Server (simplexChatServer)
import Simplex.Chat.Terminal (terminalChatConfig)
import Simplex.Chat.Terminal.Main (simplexChatCLI)
main :: IO ()
main = simplexChatCLI terminalChatConfig (Just simplexChatServer)