refactor(providers): drop unused InspectImageOutput type

The exported struct was produced and consumed by nothing — no
InspectImage method exists and no caller references it — so it was
dead public surface, not a usable affordance.

Signed-off-by: Luca Di Maio <luca.dimaio1@gmail.com>
This commit is contained in:
Luca Di Maio
2026-07-24 14:25:52 +02:00
parent 60103b1da1
commit 64acbeade6
-5
View File
@@ -72,11 +72,6 @@ type inspectOutput struct {
} `json:"Config"`
}
type InspectImageOutput struct {
ID string `json:"ID"`
Architecture string `json:"Architecture"`
}
func (d *Docker) ListContainers(ctx context.Context) ([]containermanager.Container, error) {
args := []string{"ps", "-a", "--no-trunc", "--format", "{{json .}}"}
out, err := d.run(ctx, args, runOptions{})