fileProvider reads config from the local filesystem.
| 25 | |
| 26 | // fileProvider reads config from the local filesystem. |
| 27 | type fileProvider struct { |
| 28 | path string |
| 29 | } |
| 30 | |
| 31 | func newFileProvider(path string) *fileProvider { |
| 32 | return &fileProvider{path: path} |
nothing calls this directly
no outgoing calls
no test coverage detected