forked from nicocha30/ligolo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli.go
23 lines (20 loc) · 880 Bytes
/
cli.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package app
import "github.com/desertbit/grumble"
// App is used to register the grumble
var App = grumble.New(&grumble.Config{
Name: "github.com/audibleblink/ligolo-ng",
Description: "Ligolo-ng - An advanced, yet simple tunneling tool",
HelpHeadlineUnderline: true,
HelpSubCommands: true,
})
func init() {
App.SetPrintASCIILogo(func(a *grumble.App) {
a.Println(" __ _ __ ")
a.Println(" / / (_)___ _____ / /___ ____ ____ _")
a.Println(" / / / / __ `/ __ \\/ / __ \\______/ __ \\/ __ `/")
a.Println(" / /___/ / /_/ / /_/ / / /_/ /_____/ / / / /_/ / ")
a.Println("/_____/_/\\__, /\\____/_/\\____/ /_/ /_/\\__, / ")
a.Println(" /____/ /____/ \n")
a.Println("Made in France ♥ by Cha! - TNP IT Security <tnpitsecurity.com>\n")
})
}