mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-03-31 05:25:47 +00:00
* core: chat hooks allowing to extend or customize chat core * update * json * custom response * user in db queries
9 lines
235 B
Haskell
9 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)
|