mirror of
https://bitbucket.org/s_l_teichmann/mtsatellite
synced 2024-11-08 11:10:27 +01:00
11 lines
221 B
Go
11 lines
221 B
Go
package main
|
|
|
|
type Backend interface {
|
|
Fetch(hash, key []byte) ([]byte, error)
|
|
InTransaction() bool
|
|
Store(hash, key, value []byte) (bool, error)
|
|
BeginTransaction() error
|
|
CommitTransaction() error
|
|
Shutdown() error
|
|
}
|