ydb kv interface

This commit is contained in:
Konstantin Lebedev
2022-05-01 21:20:37 +05:00
parent 6a052f6ff2
commit ec0ed41e37
3 changed files with 76 additions and 19 deletions

View File

@@ -246,21 +246,6 @@ func (store *YdbStore) RollbackTransaction(ctx context.Context) error {
return nil
}
func (store *YdbStore) KvPut(ctx context.Context, key []byte, value []byte) (err error) {
//TODO implement me
panic("implement me")
}
func (store *YdbStore) KvGet(ctx context.Context, key []byte) (value []byte, err error) {
//TODO implement me
panic("implement me")
}
func (store *YdbStore) KvDelete(ctx context.Context, key []byte) (err error) {
//TODO implement me
panic("implement me")
}
func (store *YdbStore) Shutdown() {
store.DB.Close()
}