Skip to content

Commit a54ad17

Browse files
committed
simplify objdb by merging packages
1 parent f1afea9 commit a54ad17

7 files changed

+1531
-0
lines changed

client.go

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package objdb
2+
3+
import log "github.com/Sirupsen/logrus"
4+
5+
var defaultConfStore = "etcd"
6+
7+
// NewClient Create a new conf store
8+
func NewClient(clientName string) API {
9+
if clientName == "" {
10+
clientName = defaultConfStore
11+
}
12+
13+
// Get the plugin
14+
plugin := GetPlugin(clientName)
15+
16+
// Initialize the objdb client
17+
if err := plugin.Init([]string{}); err != nil {
18+
log.Errorf("Error initializing confstore plugin. Err: %v", err)
19+
log.Fatal("Error initializing confstore plugin")
20+
}
21+
22+
return plugin
23+
}

0 commit comments

Comments
 (0)