1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-06-24 22:26:54 +02:00

Move store to data/store

This commit is contained in:
Asim Aslam
2019-06-19 22:04:13 +01:00
parent a8042adac1
commit 3f910038a3
7 changed files with 6 additions and 6 deletions

View File

@ -1,15 +0,0 @@
package store
import (
"github.com/micro/go-micro/config/options"
)
// Set the nodes used to back the store
func Nodes(a ...string) options.Option {
return options.WithValue("store.nodes", a)
}
// Prefix sets a prefix to any key ids used
func Prefix(p string) options.Option {
return options.WithValue("store.prefix", p)
}