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.
12 lignes
278 o
Go
12 lignes
278 o
Go
package reportController
|
|
|
|
import "github.com/NyaaPantsu/nyaa/controllers/router"
|
|
|
|
func init() {
|
|
reportRoutes := router.Get().Group("/report")
|
|
{
|
|
//reporting a torrent
|
|
reportRoutes.GET("/:id", ReportViewTorrentHandler)
|
|
reportRoutes.POST("/:id", ReportTorrentHandler)
|
|
}
|
|
}
|