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

10 lines
126 B
Go
Raw Normal View History

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