diff --git a/README.md b/README.md index 8f4fdb2..bc85396 100644 --- a/README.md +++ b/README.md @@ -36,8 +36,8 @@ Features ```go type Store interface { - Set(k string, v interface{}) error - Get(k string, v interface{}) (found bool, err error) + Set(k string, v any) error + Get(k string, v any) (found bool, err error) Delete(k string) error Close() error } @@ -103,7 +103,7 @@ For the Godoc of specific implementations, see