package main import ( "github.com/kataras/iris" "github.com/kataras/iris/middleware/pprof" ) func main() { app := iris.New() app.Get("/", func(ctx iris.Context) { ctx.HTML("

Please click here") }) app.Any("/debug/pprof/{action:path}", pprof.New()) // ___________ app.Run(iris.Addr(":8080")) }