mirror of
https://github.com/fleetdm/fleet
synced 2026-05-12 03:28:48 +00:00
For #29478, sans GitOps. --------- Co-authored-by: RachelElysia <71795832+RachelElysia@users.noreply.github.com> Co-authored-by: Konstantin Sykulev <konst@sykulev.com>
13 lines
284 B
Go
13 lines
284 B
Go
package failing
|
|
|
|
type FailingSoftwareInstallerStore struct {
|
|
*commonFailingStore
|
|
}
|
|
|
|
func NewFailingSoftwareInstallerStore() *FailingSoftwareInstallerStore {
|
|
return &FailingSoftwareInstallerStore{
|
|
commonFailingStore: &commonFailingStore{
|
|
Entity: "software installer",
|
|
},
|
|
}
|
|
}
|