mirror of
https://github.com/openziti/zrok.git
synced 2025-06-07 02:17:57 +02: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
|
|
}
|