mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
53a1fe8d84
* osquery services via go-kit * Visual Studio Code configurations * create query and pack endpoints * organizing files more scalably * modify query and pack endpoints * delete query and pack endpoints * get query and pack endpoints * get all queries and packs endpoints * add and remove queries from packs * test stubs * removing some indirection * query service tests * service pack tests * transport tests * adding config file flag back * organizing package kolide * get queries in pack endpoint * run tests on 1.7? * no 1.7 image :( * typo in circle.yml
15 lines
224 B
Go
15 lines
224 B
Go
package kolide
|
|
|
|
// Datastore combines all the interfaces in the Kolide DAL
|
|
type Datastore interface {
|
|
UserStore
|
|
QueryStore
|
|
PackStore
|
|
OsqueryStore
|
|
EmailStore
|
|
SessionStore
|
|
Name() string
|
|
Drop() error
|
|
Migrate() error
|
|
}
|