mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-23 09:28:20 +08: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
|
|
}
|