24 lines
610 B
Go
24 lines
610 B
Go
|
package main
|
||
|
|
||
|
import "git.sual.in/casual/gobuster-lib/cli/cmd"
|
||
|
|
||
|
//----------------------------------------------------
|
||
|
// Gobuster -- by OJ Reeves
|
||
|
//
|
||
|
// A crap attempt at building something that resembles
|
||
|
// dirbuster or dirb using Go. The goal was to build
|
||
|
// a tool that would help learn Go and to actually do
|
||
|
// something useful. The idea of having this compile
|
||
|
// to native code is also appealing.
|
||
|
//
|
||
|
// Run: gobuster -h
|
||
|
//
|
||
|
// Please see THANKS file for contributors.
|
||
|
// Please see LICENSE file for license details.
|
||
|
//
|
||
|
//----------------------------------------------------
|
||
|
|
||
|
func main() {
|
||
|
cmd.Execute()
|
||
|
}
|