718a2fad26
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
12 lines
281 B
Go
12 lines
281 B
Go
package accounting
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/nspcc-dev/neofs-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)
|
|
}
|