Merge pull request #5 from Ice3man543/codingo-update-banner

Update main.go with new banner
master
Michael 2018-04-04 21:55:34 +10:00 committed by GitHub
commit 9499c866a0
1 changed files with 5 additions and 8 deletions

13
main.go
View File

@ -20,13 +20,10 @@ import (
var banner = ` var banner = `
_________ ___. ___________.__ .___ __ ___ __ __
/ _____/__ _\_ |__ \_ _____/|__| ____ __| _/___________ .-----.--.--| |--.' _|__.-----.--| .-----.----.
\_____ \| | \ __ \ | __) | |/ \ / __ |/ __ \_ __ \ |__ --| | | _ | _| | | _ | -__| _|
/ \ | / \_\ \| \ | | | \/ /_/ \ ___/| | \/ |_____|_____|_____|__| |__|__|__|_____|_____|__| `
/_______ /____/|___ /\___ / |__|___| /\____ |\___ >__|
\/ \/ \/ \/ \/ \/
`
// Parses command line arguments into a setting structure // Parses command line arguments into a setting structure
func ParseCmdLine() (state *helper.State, err error) { func ParseCmdLine() (state *helper.State, err error) {
@ -68,4 +65,4 @@ func main() {
} }
passive.PassiveDiscovery(state) passive.PassiveDiscovery(state)
} }