BalanceService is an interface for interacting with DigitalOcean's balance api.
| 25 | |
| 26 | // BalanceService is an interface for interacting with DigitalOcean's balance api. |
| 27 | type BalanceService interface { |
| 28 | Get() (*Balance, error) |
| 29 | } |
| 30 | |
| 31 | type balanceService struct { |
| 32 | client *godo.Client |
no outgoing calls
no test coverage detected