superfly / flyctl

Empty slice literal used to declare a variable GO-W1027
Anti-pattern
Minor
1 occurrence in this check
Empty slice literal of type "[][]string" used to define "rows"
 92		return nil
 93	}
 94
 95	rows := [][]string{} 96
 97	listOfMachinesLink := io.CreateLink("View them in the UI here", fmt.Sprintf("https://fly.io/apps/%s/machines/", appName))
 98