StandardDataLoader is a struct that represents a default location resolver.
| 73 | |
| 74 | // StandardDataLoader is a struct that represents a default location resolver. |
| 75 | type StandardDataLoader struct { |
| 76 | resourceResolver io.ResourceResolver |
| 77 | loaders []PropertySourceLoader |
| 78 | } |
| 79 | |
| 80 | // NewStandardDataLoader function creates a new StandardDataLoader with the provided property source loaders. |
| 81 | func NewStandardDataLoader(resourceResolver io.ResourceResolver, loaders ...PropertySourceLoader) *StandardDataLoader { |
nothing calls this directly
no outgoing calls
no test coverage detected