move tunnel/resolver into network

This commit is contained in:
Asim Aslam
2020-08-23 15:00:27 +01:00
parent 44f281f8d9
commit d60d85de5c
21 changed files with 22 additions and 22 deletions

View File

@@ -0,0 +1,13 @@
// Package noop is a noop resolver
package noop
import (
"github.com/micro/go-micro/v3/network/resolver"
)
type Resolver struct{}
// Resolve returns the list of nodes
func (r *Resolver) Resolve(name string) ([]*resolver.Record, error) {
return []*resolver.Record{}, nil
}