mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
19 lines
479 B
Go
19 lines
479 B
Go
|
package cassandra
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/chrislusf/seaweedfs/weed/filer"
|
||
|
)
|
||
|
|
||
|
func (store *CassandraStore) KvPut(ctx context.Context, key []byte, value []byte) (err error) {
|
||
|
return filer.ErrKvNotImplemented
|
||
|
}
|
||
|
|
||
|
func (store *CassandraStore) KvGet(ctx context.Context, key []byte) (value []byte, err error) {
|
||
|
return nil, filer.ErrKvNotImplemented
|
||
|
}
|
||
|
|
||
|
func (store *CassandraStore) KvDelete(ctx context.Context, key []byte) (err error) {
|
||
|
return filer.ErrKvNotImplemented
|
||
|
}
|