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