1
1
mirror of https://github.com/openziti/zrok.git synced 2025-08-13 17:57:37 +02:00
Files
zrok/controller/metrics/websocketSource.go
2023-03-03 13:31:57 -05:00

18 lines
337 B
Go

package metrics
import "github.com/michaelquigley/cf"
type WebsocketSourceConfig struct {
WebsocketEndpoint string
}
func loadWebsocketSourceConfig(v interface{}, opts *cf.Options) (interface{}, error) {
return nil, nil
}
type websocketSource struct{}
func (s *websocketSource) Start() (chan struct{}, error) {
return nil, nil
}