package prometheus import ( "repository.basistech.ru/BASIS/dynamix-golang-sdk/v10/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, } }