Files
ProjectOctopus/agent-go/a_init/bastion_init/BastionHelp.go
2024-06-14 10:37:40 +08:00

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()
}