"use strict"; /** * @param {Egg.Application} app - egg application */ module.exports = (app) => { const { router, controller } = app; //获取权限 router.get("/", controller.home.index); //旋转 router.get("/continuous", controller.haikangweishi.continuous); //到达预置点 router.get("/goto", controller.haikangweishi.goto); //设置预置点 router.get("/presets", controller.haikangweishi.presets); //删除预置点 router.get("/delPresets", controller.haikangweishi.delPresets); //调焦 router.get("/zoom", controller.haikangweishi.zoom); //聚焦 router.get("/focus", controller.haikangweishi.focus); //曝光度 router.get("/iris", controller.haikangweishi.iris); };