fileSource is used to load an agent configuration from a YAML file.
| 35 | |
| 36 | // fileSource is used to load an agent configuration from a YAML file. |
| 37 | type fileSource struct { |
| 38 | path string |
| 39 | } |
| 40 | |
| 41 | func NewFileSource(path string) Source { |
| 42 | return fileSource{ |
nothing calls this directly
no outgoing calls
no test coverage detected