mtsatellite/common/dbclient.go
2022-02-27 21:02:16 +01:00

11 lines
276 B
Go

package common
// Copyright 2022 by Sascha L. Teichmann
// Use of this source code is governed by the MIT license
// that can be found in the LICENSE file.
type DBClient interface {
QueryCuboid(cuboid Cuboid, fn func(*Block) *Block) (count int, err error)
Close() error
}