initial commit

This commit is contained in:
2025-12-31 15:33:16 -05:00
commit 89f2114b06
51 changed files with 4779 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package store
import (
"github.com/google/uuid"
)
type Store interface {
// Settings Methods
SaveSettings(*Settings) error
GetSettings() (*Settings, error)
// Chat Methods
GetChat(chatID uuid.UUID) (*Chat, error)
DeleteChat(chatID uuid.UUID) error
ListChats() ([]*Chat, error)
SaveChat(*Chat) error
SaveChatMessage(*Message) error
}