mirror of
https://github.com/openziti/zrok.git
synced 2025-02-18 03:01:02 +01:00
18 lines
304 B
Go
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
|
|
}
|