Add consul package comment

This commit is contained in:
Asim Aslam 2018-12-01 12:54:46 +00:00
parent 1be0e8776f
commit a1665ab37a

View File

@ -1,9 +1,11 @@
// Package consul provides a consul based registry and is the default discovery system
package consul
import (
"github.com/micro/go-micro/registry"
)
// NewRegistry returns a new consul registry
func NewRegistry(opts ...registry.Option) registry.Registry {
return registry.NewRegistry(opts...)
}