fleet/server/datastore/failing/software_installer.go
Ian Littman 0d29f2bfc0
Add custom software icons (#32652)
For #29478, sans GitOps.

---------

Co-authored-by: RachelElysia <71795832+RachelElysia@users.noreply.github.com>
Co-authored-by: Konstantin Sykulev <konst@sykulev.com>
2025-09-05 17:31:03 -05:00

13 lines
284 B
Go

package failing
type FailingSoftwareInstallerStore struct {
*commonFailingStore
}
func NewFailingSoftwareInstallerStore() *FailingSoftwareInstallerStore {
return &FailingSoftwareInstallerStore{
commonFailingStore: &commonFailingStore{
Entity: "software installer",
},
}
}