github.com/shogo82148/std@v1.22.1-0.20240327122250-4e474527810c/cmd/go/internal/bug/bug.go (about)

     1  // Copyright 2016 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  // Package bug implements the “go bug” command.
     6  package bug
     7  
     8  import (
     9  	"github.com/shogo82148/std/cmd/go/internal/base"
    10  )
    11  
    12  var CmdBug = &base.Command{
    13  	Run:       runBug,
    14  	UsageLine: "go bug",
    15  	Short:     "start a bug report",
    16  	Long: `
    17  Bug opens the default browser and starts a new bug report.
    18  The report includes useful system information.
    19  	`,
    20  }