mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-19 02:46:33 -05:00
16 lines
349 B
Go
16 lines
349 B
Go
|
package extension
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/v2fly/v2ray-core/v4/features"
|
||
|
)
|
||
|
|
||
|
type PersistentStorageEngine interface {
|
||
|
features.Feature
|
||
|
|
||
|
PersistentStorageEngine()
|
||
|
Put(ctx context.Context, key []byte, value []byte) error
|
||
|
Get(ctx context.Context, key []byte) ([]byte, error)
|
||
|
List(ctx context.Context, keyPrefix []byte) ([][]byte, error)
|
||
|
}
|