gitlab-go/pipelines/pipelines.go

21 lines
583 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package pipelines
import (
"github.com/urfave/cli/v2"
"github.com/xuxiaowei-com-cn/gitlab-go/flag"
)
// Pipelines 流水线 API https://docs.gitlab.cn/jh/api/pipelines.html
func Pipelines() *cli.Command {
return &cli.Command{
Name: "pipeline",
Aliases: []string{"pipelines", "pl"},
Usage: "流水线 API中文文档https://docs.gitlab.cn/jh/api/pipelines.html",
Flags: append(flag.Common(), flag.Sort(), flag.Page(), flag.PerPage(), flag.PrintJson(), flag.PrintTime(), flag.Recursion(),
flag.Id(false)),
Subcommands: []*cli.Command{
List(),
},
}
}