mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
This relates to #11244 If some of the following don't apply, delete the relevant line. - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [x] Manual QA for all new/changed functionality - [x] Manual QA must be performed in the three main OSs, macOS, Windows and Linux. --------- Co-authored-by: Sharon Katz <121527325+sharon-fdm@users.noreply.github.com>
18 lines
483 B
Go
18 lines
483 B
Go
//go:build windows
|
|
|
|
package table
|
|
|
|
import (
|
|
"github.com/fleetdm/fleet/v4/orbit/pkg/table/cis_audit"
|
|
"github.com/fleetdm/fleet/v4/orbit/pkg/table/mdm"
|
|
"github.com/osquery/osquery-go"
|
|
"github.com/osquery/osquery-go/plugin/table"
|
|
)
|
|
|
|
func PlatformTables() []osquery.OsqueryPlugin {
|
|
return []osquery.OsqueryPlugin{
|
|
// Fleet tables
|
|
table.NewPlugin("mdm_bridge", mdmbridge.Columns(), mdmbridge.Generate),
|
|
table.NewPlugin("cis_audit", cisaudit.Columns(), cisaudit.Generate),
|
|
}
|
|
}
|