2021-05-21 13:48:26 +00:00
|
|
|
package testrig
|
|
|
|
|
|
|
|
import (
|
2022-05-15 09:16:43 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/concurrency"
|
2021-05-21 13:48:26 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
2021-05-27 14:06:24 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/federation/federatingdb"
|
2022-04-28 12:23:11 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/messages"
|
2021-05-21 13:48:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewTestFederatingDB returns a federating DB with the underlying db
|
2022-05-15 09:16:43 +00:00
|
|
|
func NewTestFederatingDB(db db.DB, fedWorker *concurrency.WorkerPool[messages.FromFederator]) federatingdb.DB {
|
2022-04-28 12:23:11 +00:00
|
|
|
return federatingdb.New(db, fedWorker)
|
2021-05-21 13:48:26 +00:00
|
|
|
}
|