EndpointFormatCheck verifies every endpoint URL starts with http(s)://.
| 117 | |
| 118 | // EndpointFormatCheck verifies every endpoint URL starts with http(s)://. |
| 119 | type EndpointFormatCheck struct { |
| 120 | File providers.File |
| 121 | } |
| 122 | |
| 123 | func (c EndpointFormatCheck) Name() string { return "Endpoint Format Check" } |
| 124 | func (c EndpointFormatCheck) Run(_ context.Context, r Reporter) Result { |
nothing calls this directly
no outgoing calls
no test coverage detected