You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dynamix-golang-sdk/pkg/cloudapi/prometheus/prometheus.go

16 lines
246 B

3 months ago
package prometheus
import (
2 weeks ago
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v13/interfaces"
3 months ago
)
type Prometheus struct {
client interfaces.Caller
}
func New(client interfaces.Caller) *Prometheus {
return &Prometheus{
client: client,
}
}