harness-drone/store/store.go

24 lines
539 B
Go
Raw Normal View History

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
package store
import (
2019-02-19 23:56:41 +00:00
"github.com/drone/drone/core"
)
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
}