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,17 @@
package prometheus
import (
"repository.basistech.ru/BASIS/decort-golang-sdk/interfaces"
)
// Structure for creating request to prometheus
type Prometheus struct {
client interfaces.Caller
}
// Builder for prometheus endpoints
func New(client interfaces.Caller) *Prometheus {
return &Prometheus{
client: client,
}
}