mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
296 B
Go
10 lines
296 B
Go
5 years ago
|
package git
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type Provider interface {
|
||
|
CreateRepository(ctx context.Context, r *Repository) (bool, error)
|
||
|
AddTeam(ctx context.Context, r *Repository, name, permission string) (bool, error)
|
||
|
AddDeployKey(ctx context.Context, r *Repository, key, keyName string) (bool, error)
|
||
|
}
|