oc-aggregator/routers/router.go

26 lines
541 B
Go
Raw Normal View History

// @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
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)
}