Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 1.32 KB

README.md

File metadata and controls

26 lines (23 loc) · 1.32 KB

CleverGo pprof

Build Status Coverage Status Go.Dev reference Go Report Card Release Downloads Chat Community

$ go get -u clevergo.tech/pprof
import (
    "clevergo.tech/clevergo"
    "clevergo.tech/pprof"
)

func main() {
    app := clevergo.New()
    pprof.RegisterHandler(app)
    app.Run(":8080")
}