Files
gin-contrib/examples/pprof/default/main.go
T
2024-03-29 11:40:39 +03:00

13 lines
178 B
Go

package main
import (
"gitverse.ru/andoma/gin"
"gitverse.ru/andoma/gin-contrib/pprof"
)
func main() {
router := gin.Default()
pprof.Register(router)
router.Run(":8080")
}