2019-02-19 23:56:41 +00:00
|
|
|
// Copyright 2019 Drone.IO Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by the Drone Non-Commercial License
|
|
|
|
// that can be found in the LICENSE file.
|
2018-02-19 22:24:10 +00:00
|
|
|
|
2015-10-21 23:14:02 +00:00
|
|
|
package store
|
|
|
|
|
2016-03-25 19:54:16 +00:00
|
|
|
import (
|
2019-02-19 23:56:41 +00:00
|
|
|
"github.com/drone/drone/core"
|
2016-03-25 19:54:16 +00:00
|
|
|
)
|
|
|
|
|
2019-02-19 23:56:41 +00:00
|
|
|
// Stores provides all database stores.
|
|
|
|
type Stores struct {
|
|
|
|
Batch core.Batcher
|
|
|
|
Builds core.BuildStore
|
|
|
|
Crons core.CronStore
|
|
|
|
Logs core.LogStore
|
|
|
|
Perms core.PermStore
|
|
|
|
Secrets core.SecretStore
|
|
|
|
Stages core.StageStore
|
|
|
|
Steps core.StepStore
|
|
|
|
Repos core.RepositoryStore
|
|
|
|
Users core.UserStore
|
2016-03-25 19:54:16 +00:00
|
|
|
}
|