13 lines
178 B
Go
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")
|
|
}
|