forked from TrueCloudLab/frostfs-node
Airat Arifullin
9b13a18aac
* Update version within go.mod; * Fix deprecated frostfs-api-go/v2 package and use frostfs-sdk-go/api instead. Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
12 lines
296 B
Go
12 lines
296 B
Go
package accounting
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/api/accounting"
|
|
)
|
|
|
|
// Server is an interface of the FrostFS API Accounting service server.
|
|
type Server interface {
|
|
Balance(context.Context, *accounting.BalanceRequest) (*accounting.BalanceResponse, error)
|
|
}
|