11 lignes
275 o
Go
11 lignes
275 o
Go
|
package searchController
|
||
|
|
||
|
import "github.com/NyaaPantsu/nyaa/controllers/router"
|
||
|
|
||
|
func init() {
|
||
|
router.Get().Any("/", SearchHandler)
|
||
|
router.Get().Any("/p/:page", SearchHandler)
|
||
|
router.Get().Any("/search", SearchHandler)
|
||
|
router.Get().Any("/search/:page", SearchHandler)
|
||
|
}
|