frostfs-node/pkg/services/accounting/server.go

13 lines
287 B
Go
Raw Normal View History

package accounting
import (
"context"
"github.com/TrueCloudLab/frostfs-api-go/v2/accounting"
)
// Server is an interface of the NeoFS API Accounting service server.
type Server interface {
Balance(context.Context, *accounting.BalanceRequest) (*accounting.BalanceResponse, error)
}