mirror of
https://git.vectorsigma.ru/public/AdGuardHome.git
synced 2026-08-03 22:59:28 +00:00
15 lines
360 B
Go
15 lines
360 B
Go
package aghtest_test
|
|
|
|
import (
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghtest"
|
|
"github.com/AdguardTeam/AdGuardHome/internal/client"
|
|
)
|
|
|
|
// type check
|
|
//
|
|
// TODO(s.chzhen): Resolve the import cycles and move it to aghtest.
|
|
var (
|
|
_ client.AddressProcessor = (*aghtest.AddressProcessor)(nil)
|
|
_ client.AddressUpdater = (*aghtest.AddressUpdater)(nil)
|
|
)
|