mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
14 lines
225 B
Go
14 lines
225 B
Go
package prometheus
|
|
|
|
import (
|
|
"github.com/prometheus/prometheus/promql"
|
|
"github.com/prometheus/prometheus/storage"
|
|
)
|
|
|
|
type Engine = promql.Engine
|
|
|
|
type Prometheus interface {
|
|
Engine() *Engine
|
|
Storage() storage.Queryable
|
|
}
|