forked from p93542168/wheat-cache
28 lines
581 B
Go
28 lines
581 B
Go
package structure
|
|
|
|
type KeyBase struct {
|
|
}
|
|
|
|
func (k *KeyBase) SizeByte() int64 {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
// TODO RollBack 事务相关, V2 实现
|
|
func (k *KeyBase) RollBack() error {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
// Begin 事务相关, V2 实现
|
|
func (k *KeyBase) Begin() error {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
// Comment 事务相关, V2 实现
|
|
func (k *KeyBase) Comment() error {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (k *KeyBase) Encode() ([]byte, error) {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|