2021-03-15 10:53:08 +00:00
|
|
|
package accounting
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/v2/accounting"
|
|
|
|
)
|
|
|
|
|
2022-10-17 12:03:55 +00:00
|
|
|
// Server is an interface of the NeoFS API Accounting service server.
|
2021-03-15 10:53:08 +00:00
|
|
|
type Server interface {
|
|
|
|
Balance(context.Context, *accounting.BalanceRequest) (*accounting.BalanceResponse, error)
|
|
|
|
}
|