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 "options"
301		configurations := postgresConfigurations(input.Manager)
302		var selected int
303
304		options := []string{}305		for i, cfg := range configurations {
306			options = append(options, cfg.Description)
307			if selected == 0 && !strings.HasPrefix(cfg.Description, "Dev") {