gotools/go/packages/gopackages/main.go

func main() {}

type application

// Name implements tool.Application returning the binary name.
func (app *application) Name() string {}

// Usage implements tool.Application returning empty extra argument usage.
func (app *application) Usage() string {}

// ShortHelp implements tool.Application returning the main binary help.
func (app *application) ShortHelp() string {}

// DetailedHelp implements tool.Application returning the main binary help.
func (app *application) DetailedHelp(f *flag.FlagSet) {}

// Run takes the args after flag processing and performs the specified query.
func (app *application) Run(ctx context.Context, args ...string) error {}

func (app *application) print(lpkg *packages.Package) {}

type stringListValue

func newStringListValue(val []string, p *[]string) *stringListValue {}

func (ss *stringListValue) Get() interface{}

func (ss *stringListValue) String() string {}

func (ss *stringListValue) Set(s string) error {}