2023-03-10 11:28:38 +01:00
|
|
|
// @APIVersion 1.0.0
|
2024-09-27 09:31:45 +02:00
|
|
|
// @Title oc-aggregator
|
|
|
|
// @Description OpenCloud distributed search aggregation service
|
|
|
|
// @Contact admin@o-cloud.io
|
|
|
|
// @TermsOfServiceUrl http://cloud.o-forge.io/
|
2024-10-03 09:36:49 +02:00
|
|
|
// @License AGPL
|
|
|
|
// @LicenseUrl https://www.gnu.org/licenses/agpl-3.0.html
|
2023-03-10 11:28:38 +01:00
|
|
|
package routers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"oc-aggregator/controllers"
|
|
|
|
|
|
|
|
beego "github.com/beego/beego/v2/server/web"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
ns := beego.NewNamespace("/oc",
|
|
|
|
beego.NSNamespace("/search",
|
|
|
|
beego.NSInclude(
|
|
|
|
&controllers.SearchController{},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
beego.AddNamespace(ns)
|
|
|
|
}
|