mirror of
https://github.com/chainreactors/spray.git
synced 2025-05-06 18:51:22 +00:00
12 lines
222 B
Go
12 lines
222 B
Go
//go:generate go run pkg/templates_gen.go
|
|
package main
|
|
|
|
import "github.com/chainreactors/spray/cmd"
|
|
|
|
func main() {
|
|
//f, _ := os.Create("cpu.txt")
|
|
//pprof.StartCPUProfile(f)
|
|
//defer pprof.StopCPUProfile()
|
|
cmd.Spray()
|
|
}
|