summaryrefslogtreecommitdiffstats
path: root/src/dkv/api/backendDatastoreConnection.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/dkv/api/backendDatastoreConnection.go')
-rw-r--r--src/dkv/api/backendDatastoreConnection.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dkv/api/backendDatastoreConnection.go b/src/dkv/api/backendDatastoreConnection.go
index ebfcc4b..adbaecc 100644
--- a/src/dkv/api/backendDatastoreConnection.go
+++ b/src/dkv/api/backendDatastoreConnection.go
@@ -20,8 +20,8 @@ package api
type DatastoreConnector interface {
InitializeDatastoreClient() error
CheckDatastoreHealth() error
- RequestPUT(string, string) error
- RequestGET(string) (string, error)
+ RequestPUT(string, string, string) error
+ RequestGET(string, string) (string, error)
RequestGETS() ([]string, error)
- RequestDELETE(string) error
+ RequestDELETE(string, string) error
}