package bastion_init import "fmt" var BastionFunctionList []string func PrintBastionHelp() { fmt.Println() fmt.Println("Bastion Mode Supported Commands:") for i, s := range BastionFunctionList { fmt.Printf("\t%d. %s\n", i+1, s) } fmt.Println() }