fleet/kolide/datastore.go
Victor Vrantchan 26b1e70ac3 App config api (#223)
Add GET and PATCH endpoints for /kolide/config to get/update current app configuration
2016-09-21 20:45:57 -04:00

17 lines
259 B
Go

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