forked from TrueCloudLab/frostfs-sdk-java
8 lines
207 B
Java
8 lines
207 B
Java
package info.frostfs.sdk.services;
|
|
|
|
import frostfs.accounting.Types;
|
|
import info.frostfs.sdk.jdo.parameters.CallContext;
|
|
|
|
public interface AccountingClient {
|
|
Types.Decimal getBalance(CallContext ctx);
|
|
}
|