From c46dd5cfa6ec81995af609c00ee6264a63c16b4d Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 18 Nov 2025 11:48:00 +0100 Subject: [PATCH] bib: drop unused workload.go --- bib/cmd/bootc-image-builder/workload.go | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 bib/cmd/bootc-image-builder/workload.go diff --git a/bib/cmd/bootc-image-builder/workload.go b/bib/cmd/bootc-image-builder/workload.go deleted file mode 100644 index d2667fa7e..000000000 --- a/bib/cmd/bootc-image-builder/workload.go +++ /dev/null @@ -1,24 +0,0 @@ -package main - -import "github.com/osbuild/images/pkg/rpmmd" - -// NullWorkload implements the images Workload interface but returns only nil -// from all its methods and holds no data. -type NullWorkload struct { -} - -func (p *NullWorkload) GetRepos() []rpmmd.RepoConfig { - return nil -} - -func (p *NullWorkload) GetPackages() []string { - return nil -} - -func (p *NullWorkload) GetServices() []string { - return nil -} - -func (p *NullWorkload) GetDisabledServices() []string { - return nil -}