Refactoring
This commit is contained in:
15
pkg/cloudapi/account/account.go
Normal file
15
pkg/cloudapi/account/account.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package account
|
||||
|
||||
import (
|
||||
"github.com/rudecs/decort-sdk/interfaces"
|
||||
)
|
||||
|
||||
type Account struct {
|
||||
client interfaces.Caller
|
||||
}
|
||||
|
||||
func New(client interfaces.Caller) *Account {
|
||||
return &Account{
|
||||
client,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user