Skip to content
Snippets Groups Projects
Commit 59f3fb1d authored by thijsheijden's avatar thijsheijden
Browse files

Updated keyvaluedriver interface

parent edc1c9e3
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,6 @@ package keyvaluedriver ...@@ -2,6 +2,6 @@ package keyvaluedriver
// KeyValueStoreInterface is an interface for a key value storage // KeyValueStoreInterface is an interface for a key value storage
type KeyValueStoreInterface interface { type KeyValueStoreInterface interface {
Get(key *string) *string Get(key *string) string
Set(key *string, value interface{}) error Set(key *string, value *string) error
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment