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.
10 lignes
204 o
Go
10 lignes
204 o
Go
package captchaController
|
|
|
|
import (
|
|
"github.com/NyaaPantsu/nyaa/controllers/router"
|
|
"github.com/NyaaPantsu/nyaa/utils/captcha"
|
|
)
|
|
|
|
func init() {
|
|
router.Get().Any("/captcha/*hash", captcha.ServeFiles)
|
|
}
|