use any instead of interface
This commit is contained in:
parent
1d5d900f26
commit
8f350b4b02
5 changed files with 9 additions and 9 deletions
|
|
@ -14,8 +14,8 @@ type Store interface {
|
|||
Marshaler
|
||||
Dumper
|
||||
Restorer
|
||||
Get(string, interface{}) error
|
||||
Set(string, interface{}) error
|
||||
Get(string, any) error
|
||||
Set(string, any) error
|
||||
ForEach(func(string, []byte) error) error
|
||||
ForEachPrefix(string, func(string, []byte) error) error
|
||||
Delete(string) error
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue