9 lines
94 B
Go
9 lines
94 B
Go
|
package datastore
|
||
|
|
||
|
type Datastore interface {
|
||
|
Userstore
|
||
|
Permstore
|
||
|
Repostore
|
||
|
Commitstore
|
||
|
}
|