2024-08-29 22:40:39 +02:00

16 lines
304 B
Go

package indexes
import "config-lsp/handlers/hosts/shared"
type HostsIndexes struct {
Resolver *Resolver
// [line]error
DoubleIPs map[uint32]shared.DuplicateIPDeclaration
}
func NewHostsIndexes() HostsIndexes {
return HostsIndexes{
DoubleIPs: make(map[uint32]shared.DuplicateIPDeclaration),
}
}