fleet/server/kolide/datastore.go

18 lines
270 B
Go
Raw Normal View History

2016-08-28 03:59:17 +00:00
package kolide
// Datastore combines all the interfaces in the Kolide DAL
type Datastore interface {
UserStore
QueryStore
PackStore
LabelStore
HostStore
PasswordResetStore
2016-08-28 03:59:17 +00:00
SessionStore
AppConfigStore
InviteStore
2016-08-28 03:59:17 +00:00
Name() string
Drop() error
Migrate() error
}