├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── autopprof.go ├── example_test.go ├── examples └── helloworld │ └── main.go ├── go.mod └── go.sum /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakyll/autopprof/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakyll/autopprof/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakyll/autopprof/HEAD/README.md -------------------------------------------------------------------------------- /autopprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakyll/autopprof/HEAD/autopprof.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakyll/autopprof/HEAD/example_test.go -------------------------------------------------------------------------------- /examples/helloworld/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakyll/autopprof/HEAD/examples/helloworld/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/rakyll/autopprof 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------