remove unused file

This commit is contained in:
Iuri Matias 2020-05-19 14:47:40 -04:00
parent 175c3a57f4
commit cd1e6780be
1 changed files with 0 additions and 10 deletions

View File

@ -1,10 +0,0 @@
import "../../status/chat" as status_chat
type ChatModel* = ref object
proc newChatModel*(): ChatModel =
result = ChatModel()
proc sendMessage*(self: ChatModel, msg: string): string =
echo "sending public message"
status_chat.sendPublicChatMessage("test", msg)