blob: 72a3063aebfede28ae5fe072a4411feaabc6ef18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package router
import (
"shrine/controllers"
"shrine/enums"
"shrine/utils/urls"
)
func init() {
urls.SetNamespace("config")
urls.Path(enums.GET, "/", controllers.ConfigController, "index")
}
|