Documentation ¶
Index ¶
- func DisplayBoards(client trello.API, opts ListBoardOptions, w io.Writer) error
- func DisplayBurndown(client trello.API, opts BurndownOptions, w io.Writer) error
- func DisplayCards(client trello.API, opts ListCardOptions, w io.Writer) error
- func DisplayCardsForPeople(client trello.API, opts ListCardPeopleOptions, w io.Writer) error
- func Execute()
- func NewBurndownCommand(client trello.API) *cobra.Command
- func NewCompletionCommand(root *cobra.Command) *cobra.Command
- func NewListBoardsCommand(client trello.API) *cobra.Command
- func NewListCardsCommand(client trello.API) *cobra.Command
- func NewListCardsPeopleCommand(client trello.API) *cobra.Command
- func NewRootCommand() *cobra.Command
- type BurndownOptions
- type ListBoardOptions
- type ListCardOptions
- type ListCardPeopleOptions
- type Person
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DisplayBoards ¶
DisplayBoards will render the boards you have access to
func DisplayBurndown ¶
DisplayBurndown will render burndown data using the story points associated with the card when you use the scrum for trello plugin
func DisplayCards ¶
DisplayCards will render the boards you have access to
func DisplayCardsForPeople ¶
DisplayCardsForPeople will render the boards you have access to
func Execute ¶
func Execute()
Execute adds all child commands to the root command and sets flags appropriately. This is called by main.main(). It only needs to happen once to the rootCmd.
func NewBurndownCommand ¶
NewBurndownCommand creates a new `burndown` command
func NewCompletionCommand ¶
NewCompletionCommand creates a new `completion` command
func NewListBoardsCommand ¶
NewListBoardsCommand creates a new `boards` command
func NewListCardsCommand ¶
NewListCardsCommand creates a new `cards` command
func NewListCardsPeopleCommand ¶
NewListCardsPeopleCommand creates a new `people` command that will show all the cards for a given board displayed by assigned to
func NewRootCommand ¶
NewRootCommand will return the application
Types ¶
type BurndownOptions ¶
type BurndownOptions struct {
Args []string
}
BurndownOptions provides the flags for the `cards` command
type ListBoardOptions ¶
type ListBoardOptions struct { ShowClosed bool // contains filtered or unexported fields }
ListBoardOptions provides the flags for the `boards` command
type ListCardOptions ¶
ListCardOptions provides the flags for the `cards` command
type ListCardPeopleOptions ¶
type ListCardPeopleOptions struct {
Args []string
}
ListCardPeopleOptions provides the flags for the `people` command