18 lines
388 B
Go
18 lines
388 B
Go
package controllers
|
|
|
|
import (
|
|
beego "github.com/beego/beego/v2/server/web"
|
|
)
|
|
|
|
// Operations about the admiralty objects of the datacenter
|
|
type AdmiraltyController struct {
|
|
beego.Controller
|
|
}
|
|
|
|
// @Title GetAllTargets
|
|
// @Description find all Admiralty Target
|
|
// @Success 200 {booking} models.booking
|
|
// @router /admiralty/targets [get]
|
|
func (c *AdmiraltyController) GetAllTargets() {
|
|
|
|
} |