Restructure go-micro layout and plugins

This commit is contained in:
Asim
2015-05-23 20:04:16 +01:00
parent 018183fa49
commit 74fd1fc989
39 changed files with 673 additions and 577 deletions

11
store/consul/consul.go Normal file
View File

@@ -0,0 +1,11 @@
package consul
// This is a hack
import (
"github.com/myodc/go-micro/store"
)
func NewStore(addrs []string, opt ...store.Option) store.Store {
return store.NewStore(addrs, opt...)
}