Add preview card storing to the database

This commit is contained in:
kaimanhub 2025-03-30 20:24:15 +03:00
commit 6169351d22
12 changed files with 228 additions and 55 deletions

View file

@ -58,6 +58,7 @@ type DBService struct {
db.AdvancedMigration
db.Application
db.Basic
db.Card
db.Conversation
db.Domain
db.Emoji
@ -186,6 +187,10 @@ func NewBunDBService(ctx context.Context, state *state.State) (db.DB, error) {
Basic: &basicDB{
db: db,
},
Card: &cardDB{
db: db,
state: state,
},
Conversation: &conversationDB{
db: db,
state: state,