Documentation ¶ Index ¶ type Storage Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Storage ¶ type Storage interface { // Get return the value to the key in Storage. Get(key []byte) ([]byte, error) // Put put the key-value entry to Storage. Put(key []byte, value []byte) error // Del delete the key entry in Storage. Del(key []byte) error } Storage interface of Storage. Source Files ¶ View all Source files types.go Click to show internal directories. Click to hide internal directories.