1 2 3 4 5 6 7 8 9 10 11 12 13
// Package deps exercises the deps command (go). package deps import ( "fmt" _ "embed" "github.com/x/y" "localpkg/helper" ) func main() { fmt.Println(helper.Help()) }