This commit is contained in:
asteam
2025-03-11 13:09:17 +03:00
parent cbce7f434f
commit 3f21a89e80
27 changed files with 1194 additions and 32 deletions

10
pkg/cloudbroker/resmon.go Normal file
View File

@@ -0,0 +1,10 @@
package cloudbroker
import (
"repository.basistech.ru/BASIS/decort-golang-sdk/pkg/cloudbroker/resmon"
)
// Accessing the Resmon method group
func (cb *CloudBroker) Resmon() *resmon.Resmon {
return resmon.New(cb.client)
}