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

View File

@@ -0,0 +1,15 @@
package resmon
import "repository.basistech.ru/BASIS/decort-golang-sdk/interfaces"
// Structure for creating request to resource monitoring
type Resmon struct {
client interfaces.Caller
}
// Builder for resource monitoring endpoints
func New(client interfaces.Caller) *Resmon {
return &Resmon{
client: client,
}
}