mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 08:28:52 +00:00
10 lines
206 B
Go
10 lines
206 B
Go
//go:build darwin && amd64
|
|
|
|
package table
|
|
|
|
import "github.com/osquery/osquery-go"
|
|
|
|
// stub for amd64 platforms
|
|
func appendTables(plugins []osquery.OsqueryPlugin) []osquery.OsqueryPlugin {
|
|
return plugins
|
|
}
|