v9.0.0
This commit is contained in:
17
pkg/cloudbroker/backup/backup.go
Normal file
17
pkg/cloudbroker/backup/backup.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package backup
|
||||
|
||||
import (
|
||||
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v9/interfaces"
|
||||
)
|
||||
|
||||
// Structure for creating request to backup
|
||||
type Backup struct {
|
||||
client interfaces.Caller
|
||||
}
|
||||
|
||||
// Builder for backup endpoints
|
||||
func New(client interfaces.Caller) *Backup {
|
||||
return &Backup{
|
||||
client: client,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user