27 lines
764 B
Go
27 lines
764 B
Go
package aghtest_test
|
|
|
|
import (
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghtest"
|
|
"github.com/AdguardTeam/AdGuardHome/internal/client"
|
|
"github.com/AdguardTeam/AdGuardHome/internal/dnsforward"
|
|
"github.com/AdguardTeam/AdGuardHome/internal/filtering"
|
|
)
|
|
|
|
// Put interface checks that cause import cycles here.
|
|
|
|
// type check
|
|
var _ filtering.Resolver = (*aghtest.Resolver)(nil)
|
|
|
|
// type check
|
|
var _ dnsforward.ClientsContainer = (*aghtest.ClientsContainer)(nil)
|
|
|
|
// type check
|
|
//
|
|
// TODO(s.chzhen): It's here to avoid the import cycle. Remove it.
|
|
var _ client.AddressProcessor = (*aghtest.AddressProcessor)(nil)
|
|
|
|
// type check
|
|
//
|
|
// TODO(s.chzhen): It's here to avoid the import cycle. Remove it.
|
|
var _ client.AddressUpdater = (*aghtest.AddressUpdater)(nil)
|