mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-04 18:20:36 +08:00
21 lines
325 B
Go
21 lines
325 B
Go
package druid
|
|
|
|
type DruidReader struct {
|
|
DruidClientUrl string
|
|
}
|
|
|
|
func connect() string {
|
|
return "Connected to Druid"
|
|
}
|
|
|
|
func NewSpanReader() *DruidReader {
|
|
connect()
|
|
return &DruidReader{
|
|
DruidClientUrl: "http://localhost:8888",
|
|
}
|
|
}
|
|
|
|
func (druidReader *DruidReader) GetServices() string {
|
|
return "Hello from Druid"
|
|
}
|