mirror of
https://github.com/go-micro/go-micro.git
synced 2025-02-04 18:21:53 +02:00
12 lines
187 B
Go
12 lines
187 B
Go
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...)
|
|
}
|