summaryrefslogtreecommitdiff
path: root/internal/db/bundb/bundb.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/db/bundb/bundb.go')
-rw-r--r--internal/db/bundb/bundb.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/db/bundb/bundb.go b/internal/db/bundb/bundb.go
index a79e7e4f4..f458132a1 100644
--- a/internal/db/bundb/bundb.go
+++ b/internal/db/bundb/bundb.go
@@ -77,6 +77,7 @@ type bunDBService struct {
db.Admin
db.Basic
db.Domain
+ db.Emoji
db.Instance
db.Media
db.Mention
@@ -168,6 +169,9 @@ func NewBunDBService(ctx context.Context) (db.DB, error) {
Domain: &domainDB{
conn: conn,
},
+ Emoji: &emojiDB{
+ conn: conn,
+ },
Instance: &instanceDB{
conn: conn,
},