mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-21 11:00:25 +08:00
12 lines
235 B
Go
12 lines
235 B
Go
package interfaces
|
|
|
|
import (
|
|
baseint "github.com/SigNoz/signoz/pkg/query-service/interfaces"
|
|
)
|
|
|
|
// Connector defines methods for interaction
|
|
// with o11y data. for example - clickhouse
|
|
type DataConnector interface {
|
|
baseint.Reader
|
|
}
|