2022-08-16 13:21:25 +03:00
|
|
|
package aghtest_test
|
|
|
|
|
2023-07-20 14:26:35 +03:00
|
|
|
import (
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghtest"
|
2024-02-27 13:48:11 +03:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/client"
|
2023-11-16 14:05:10 +03:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/dnsforward"
|
2023-07-20 14:26:35 +03:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/filtering"
|
|
|
|
)
|
|
|
|
|
2022-10-10 14:05:24 +03:00
|
|
|
// Put interface checks that cause import cycles here.
|
2023-07-20 14:26:35 +03:00
|
|
|
|
|
|
|
// type check
|
|
|
|
var _ filtering.Resolver = (*aghtest.Resolver)(nil)
|
2023-11-16 14:05:10 +03:00
|
|
|
|
|
|
|
// type check
|
|
|
|
var _ dnsforward.ClientsContainer = (*aghtest.ClientsContainer)(nil)
|
2024-02-27 13:48:11 +03:00
|
|
|
|
|
|
|
// 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)
|