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