mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
13 lines
265 B
Go
13 lines
265 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 {
|
|
Start(readerReady chan bool)
|
|
baseint.Reader
|
|
}
|