zrok/controller/metrics/fileSource.go
2023-03-06 15:59:04 -05:00

18 lines
304 B
Go

package metrics
import "github.com/michaelquigley/cf"
type FileSourceConfig struct {
Path string
}
func loadFileSourceConfig(v interface{}, opts *cf.Options) (interface{}, error) {
return nil, nil
}
type fileSource struct{}
func (s *fileSource) Start() (chan struct{}, error) {
return nil, nil
}