Files
decort-golang-sdk/pkg/cloudapi/prometheus/prometheus.go

16 lines
241 B
Go
Raw Normal View History

2025-04-18 11:42:00 +03:00
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,
}
}