mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 12:19:54 +00:00
* core: chat hooks allowing to extend or customize chat core * update * json * custom response * user in db queries
8 lines
235 B
Haskell
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)
|