2021-05-21 15:48:26 +02:00
|
|
|
package testrig
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
2021-05-27 16:06:24 +02:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/federation/federatingdb"
|
2021-05-21 15:48:26 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewTestFederatingDB returns a federating DB with the underlying db
|
2021-05-27 16:06:24 +02:00
|
|
|
func NewTestFederatingDB(db db.DB) federatingdb.DB {
|
2021-12-07 13:31:39 +01:00
|
|
|
return federatingdb.New(db)
|
2021-05-21 15:48:26 +02:00
|
|
|
}
|