mirror of
https://github.com/empayre/fleet.git
synced 2024-11-08 01:38:57 +00:00
13 lines
238 B
Go
13 lines
238 B
Go
package inmem
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/fleetdm/fleet/server/kolide"
|
|
)
|
|
|
|
func (d *Datastore) CountHostsInTargets(hostIDs, labelIDs []uint, now time.Time) (kolide.TargetMetrics, error) {
|
|
// noop
|
|
return kolide.TargetMetrics{}, nil
|
|
}
|