This commit is contained in:
2025-04-18 11:42:00 +03:00
parent 650b1c158b
commit 0c44daa241
44 changed files with 1686 additions and 31 deletions

View File

@@ -0,0 +1,15 @@
package prometheus
import (
"repository.basistech.ru/BASIS/decort-golang-sdk/interfaces"
)
type Prometheus struct {
client interfaces.Caller
}
func New(client interfaces.Caller) *Prometheus {
return &Prometheus{
client: client,
}
}