summaryrefslogtreecommitdiff
path: root/testrig/federatingdb.go
blob: 3f71274ca44b2eab5ae26f7f4eba4139713d1c1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package testrig

import (
	"github.com/superseriousbusiness/gotosocial/internal/db"
	"github.com/superseriousbusiness/gotosocial/internal/federation/federatingdb"
	"github.com/superseriousbusiness/gotosocial/internal/messages"
	"github.com/superseriousbusiness/gotosocial/internal/worker"
)

// NewTestFederatingDB returns a federating DB with the underlying db
func NewTestFederatingDB(db db.DB, fedWorker *worker.Worker[messages.FromFederator]) federatingdb.DB {
	return federatingdb.New(db, fedWorker)
}