v9.0.0
This commit is contained in:
18
pkg/cloudapi/disks/disks.go
Normal file
18
pkg/cloudapi/disks/disks.go
Normal file
@@ -0,0 +1,18 @@
|
||||
// API Actor api, this actor is the final api a enduser uses to manage his resources
|
||||
package disks
|
||||
|
||||
import (
|
||||
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v9/interfaces"
|
||||
)
|
||||
|
||||
// Structure for creating request to disks
|
||||
type Disks struct {
|
||||
client interfaces.Caller
|
||||
}
|
||||
|
||||
// Builder for disks endpoints
|
||||
func New(client interfaces.Caller) *Disks {
|
||||
return &Disks{
|
||||
client,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user