mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-20 08:51:01 +00:00
9 lines
94 B
Go
9 lines
94 B
Go
|
package datastore
|
||
|
|
||
|
type Datastore interface {
|
||
|
Userstore
|
||
|
Permstore
|
||
|
Repostore
|
||
|
Commitstore
|
||
|
}
|