devlopment branch (#1736)

This commit is contained in:
zryfish
2020-01-02 20:52:00 +08:00
committed by GitHub
parent ff0ffe8650
commit eceadec69c
440 changed files with 61524 additions and 3699 deletions

View File

@@ -0,0 +1,18 @@
package devops
type Job struct {
}
type Interface interface {
GetJob(projectId, pipelineName string) (*Job, error)
DeleteJob(projectId, pipelineId string) (bool, error)
CreateJobInFolder()
GetGlobalRole(roleName string)
AddGlobalRole(roleName string, permission string)
GetProjectRole(roleName string)
}