metrics infrastructure (#128)

This commit is contained in:
Michael Quigley
2023-03-03 13:31:57 -05:00
parent 022084ec88
commit f2e887f70b
6 changed files with 88 additions and 0 deletions

View File

@ -0,0 +1,17 @@
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
}