v1.5.0-alfa

This commit is contained in:
2023-05-15 19:27:02 +03:00
parent b7137683ab
commit 256dba5134
9 changed files with 497 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package backup
import (
"repository.basistech.ru/BASIS/decort-golang-sdk/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,
}
}