This commit is contained in:
2025-11-18 15:27:53 +03:00
parent e3a65c0f33
commit 06992b8949
10 changed files with 291 additions and 10 deletions

View File

@@ -7,11 +7,13 @@ import (
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v12/config"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v12/pkg/cloudapi"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v12/pkg/cloudbroker"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v12/pkg/sdn"
)
type ClientInterface interface {
CloudAPI() *cloudapi.CloudAPI
CloudBroker() *cloudbroker.CloudBroker
SDN() *sdn.SDN
}
func NewUniversal(cfg config.UniversalConfig) (ClientInterface, error) {