mirror of
https://github.com/logos-messaging/logos-chat.git
synced 2026-03-05 15:13:06 +00:00
17 lines
342 B
Nim
17 lines
342 B
Nim
import std/[options, times]
|
|
import conversation
|
|
import crypto
|
|
import identity
|
|
|
|
type ConvoId = string
|
|
|
|
|
|
|
|
|
|
type
|
|
ConversationStore* = concept
|
|
proc addConversation(self: Self, convo: Conversation)
|
|
proc getConversation(self: Self, convoId: string): Conversation
|
|
proc identity(self: Self): Identity
|
|
proc getId(self: Self): string
|