Borg/cmd/collect_github.go

17 lines
416 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
// collectGithubCmd represents the collect github command
var collectGithubCmd = &cobra.Command{
Use: "github",
Short: "Collect a resource from GitHub.",
Long: `Collect a resource from a GitHub repository, such as a repository or a release.`,
}
// init registers the GitHub collection parent command.
func init() {
collectCmd.AddCommand(collectGithubCmd)
}