logos-chat/src/conversation_store.nim
2025-09-03 14:43:54 -07:00

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