mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-01 16:32:25 -05: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())
|
|
}
|