## chat.nim is an example program demonstrating usage of nim-status, nim-waku, ## nim-task-runner, and nim-ncurses when not(compileOption("threads")): {.fatal: "Please compile this program with the --threads:on option!".} import # chat libs ./chat/tui logScope: topics = "chat" proc main() {.async.} = let chatConfig = handleConfig(ChatConfig.load()) notice "program started" var tui = ChatTUI.new(chatConfig) await tui.start() while tui.running: poll() notice "program exited" when isMainModule: # chat program will handle all control characters with ncurses in raw mode proc nop() {.noconv.} = discard setControlCHook(nop) waitFor main()