basic file source and usage ingester (#128)

This commit is contained in:
Michael Quigley
2023-03-03 14:22:22 -05:00
parent 55523ae7ed
commit f5846681e7
7 changed files with 49 additions and 6 deletions

View File

@ -12,6 +12,9 @@ func loadWebsocketSourceConfig(v interface{}, opts *cf.Options) (interface{}, er
type websocketSource struct{}
func (s *websocketSource) Start() (chan struct{}, error) {
func (s *websocketSource) Start(events chan map[string]interface{}) (chan struct{}, error) {
return nil, nil
}
func (s *websocketSource) Stop() {
}