···1919 "testing"
2020 "time"
21212222- "github.com/bluesky-social/indigo/api"
2322 atproto "github.com/bluesky-social/indigo/api/atproto"
2423 bsky "github.com/bluesky-social/indigo/api/bsky"
2524 "github.com/bluesky-social/indigo/bgs"
···2726 "github.com/bluesky-social/indigo/events"
2827 "github.com/bluesky-social/indigo/events/diskpersist"
2928 "github.com/bluesky-social/indigo/events/schedulers/sequential"
2929+ "github.com/bluesky-social/indigo/handles"
3030 "github.com/bluesky-social/indigo/indexer"
3131 lexutil "github.com/bluesky-social/indigo/lex/util"
3232 "github.com/bluesky-social/indigo/models"
···496496497497type TestRelay struct {
498498 bgs *bgs.BGS
499499- tr *api.TestHandleResolver
499499+ tr *handles.TestHandleResolver
500500 db *gorm.DB
501501502502 // listener is owned by by the Relay structure and should be closed by
···578578 }
579579 }, true) // TODO: actually want this to be false, but some tests use this to confirm the Relay has seen certain records
580580581581- tr := &api.TestHandleResolver{}
581581+ tr := &handles.TestHandleResolver{}
582582583583 bgsConfig := bgs.DefaultBGSConfig()
584584 bgsConfig.SSL = false