mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-29 11:31:58 +08: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
|
|
}
|