2c8344faf9
They are in different folders and all loaded in controllers/router.go. This means that you only have to create a folder with a router.go file and import this folder in main router.go to add a handler.
18 lignes
551 o
Go
18 lignes
551 o
Go
package pprofController
|
|
|
|
import "github.com/NyaaPantsu/nyaa/controllers/router"
|
|
import "github.com/NyaaPantsu/nyaa/controllers/middlewares"
|
|
|
|
func init() {
|
|
// Adding pprof support
|
|
pprofRoutes := router.Get().Group("/debug/pprof", middlewares.ModMiddleware())
|
|
{
|
|
pprofRoutes.GET("/", PprofIndex)
|
|
pprofRoutes.GET("/block", PprofIndex)
|
|
pprofRoutes.GET("/heap", PprofIndex)
|
|
pprofRoutes.GET("/profile", PprofProfile)
|
|
pprofRoutes.POST("/symbol", PprofSymbol)
|
|
pprofRoutes.GET("/symbol", PprofSymbol)
|
|
pprofRoutes.GET("/trace", PprofTrace)
|
|
}
|
|
}
|