16 lines
241 B
Go
16 lines
241 B
Go
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,
|
|
}
|
|
}
|