15 lines
256 B
Go
Executable File
15 lines
256 B
Go
Executable File
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()
|
|
}
|