Skip to content

Commit

Permalink
update interface
Browse files Browse the repository at this point in the history
  • Loading branch information
linyows committed May 30, 2018
1 parent a6285db commit 8fdf7d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kvs/kvs.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
)

type KVS interface {
Read(key string) (*item, error)
Read(key string) ([]byte, error)
Write(key string, data []byte) error
Delete(key string) error
List() ([]string, error)
Expand Down

0 comments on commit 8fdf7d0

Please sign in to comment.