mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-21 12:35:33 +03:00
31c3d7d302
Squashed commit of the following:
commit 1f99640f9f0a24ade7d2325737edf83ad0da3895
Merge: 5a9211e8c 9276afd79
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date: Tue Feb 27 13:13:03 2024 +0300
Merge branch 'master' into AG-27492-client-persistent-index
commit 5a9211e8c7832700ae4f58cea25ad38ccba98efa
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date: Thu Feb 22 19:08:35 2024 +0300
all: add todo
commit a4fc94904b0b05ed5ca5ba270125a7d7fb1e6817
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date: Wed Feb 21 14:48:33 2024 +0300
all: client persistent index
26 lines
764 B
Go
26 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)
|