fleet/kolide/datastore.go
Mike Arpaia ff92f6749a Osqueryd Service (#119)
* host service stuff

* working on the osquery service api

* log status and results logs
2016-09-06 17:28:07 -04:00

16 lines
235 B
Go

package kolide
// Datastore combines all the interfaces in the Kolide DAL
type Datastore interface {
UserStore
QueryStore
PackStore
OsqueryStore
HostStore
EmailStore
SessionStore
Name() string
Drop() error
Migrate() error
}