mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-28 19:56:14 -06:00
10 lines
310 B
Go
10 lines
310 B
Go
package testrig
|
|
|
|
import (
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
"github.com/superseriousbusiness/gotosocial/internal/processing/timeline"
|
|
)
|
|
|
|
func NewTestTimelineManager(db db.DB) timeline.Manager {
|
|
return timeline.NewManager(db, NewTestTypeConverter(db), NewTestConfig(), NewTestLog())
|
|
}
|