mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
ff92f6749a
* host service stuff * working on the osquery service api * log status and results logs
16 lines
235 B
Go
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
|
|
}
|