mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
14 lines
284 B
Go
14 lines
284 B
Go
|
|
package failing
|
||
|
|
|
||
|
|
type FailingSoftwareInstallerStore struct {
|
||
|
|
*commonFailingStore
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewFailingSoftwareInstallerStore() *FailingSoftwareInstallerStore {
|
||
|
|
return &FailingSoftwareInstallerStore{
|
||
|
|
commonFailingStore: &commonFailingStore{
|
||
|
|
Entity: "software installer",
|
||
|
|
},
|
||
|
|
}
|
||
|
|
}
|