mirror of
https://github.com/chainreactors/spray.git
synced 2025-05-06 02:31:21 +00:00
12 lines
277 B
Go
12 lines
277 B
Go
//go:generate go run templates/templates_gen.go -t templates -o pkg/templates.go -need http,rule
|
|
package main
|
|
|
|
import "github.com/chainreactors/spray/cmd"
|
|
|
|
func main() {
|
|
//f, _ := os.Create("cpu.txt")
|
|
//pprof.StartCPUProfile(f)
|
|
//defer pprof.StopCPUProfile()
|
|
cmd.Spray()
|
|
}
|