Ejemplo n.º 1
0
Archivo: tree.go Proyecto: cznic/dns
// NewTree returns a newly created Tree.
func NewTree() *Tree {
	return (*Tree)(dns.NewTree())
}
Ejemplo n.º 2
0
Archivo: cache.go Proyecto: cznic/dns
// New returns a newly created Cache.
func New() *Cache {
	return &Cache{tree: dns.NewTree(), pending: map[string]bool{}}
}