gitlab-go/boards/boards.go

21 lines
537 B
Go
Raw Permalink 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 boards
import (
"github.com/urfave/cli/v2"
"github.com/xuxiaowei-com-cn/gitlab-go/flag"
)
// Boards 项目议题板 API https://docs.gitlab.cn/jh/api/boards.html
func Boards() *cli.Command {
return &cli.Command{
Name: "board",
Aliases: []string{"boards"},
Usage: "项目议题板 API中文文档https://docs.gitlab.cn/jh/api/boards.html",
Flags: append(flag.Common(), flag.Page(), flag.PerPage(), flag.PrintJson(), flag.PrintTime(),
flag.Id(false)),
Subcommands: []*cli.Command{
List(),
},
}
}