depot/packages/networking/hyprspace/cli/util.go

9 lines
126 B
Go

package cli
import "fmt"
func printList(strings []string) {
for _, ma := range strings {
fmt.Printf(" %s\n", ma)
}
}