mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-21 14:17:29 +08:00

* feat: added license manager and feature flags * feat: completed org domain api * chore: checking in saml auth handler code * feat: added signup with sso * feat: added login support for admins * feat: added pem support for certificate * ci(build-workflow): 👷 include EE query-service * fix: 🐛 update package name * chore(ee): 🔧 LD_FLAGS related changes Signed-off-by: Prashant Shahi <prashant@signoz.io> Co-authored-by: Prashant Shahi <prashant@signoz.io> Co-authored-by: nityanandagohain <nityanandagohain@gmail.com>
13 lines
260 B
Go
13 lines
260 B
Go
package interfaces
|
|
|
|
import (
|
|
baseint "go.signoz.io/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
|
|
}
|