| 123456789101112131415161718192021222324252627282930313233343536 | 
							- const config = require("../config")
 
- module.exports = {
 
-     fitAreaList: {
 
-         url: config.base_url + "fit_manager/fitAreaList",
 
-         type: "post",
 
-     },
 
-     pathPointList: {
 
-         url: config.base_url + "fit_manager/pathPointList",
 
-         type: "post",
 
-     },
 
-     pathPointUpdate: {
 
-         url: config.base_url + "fit_manager/pathPointUpdate",
 
-         type: "post",
 
-     },
 
-     flyRuntimeInsert: {
 
-         url: config.base_url + "fly_runtime/insert",
 
-         type: "post",
 
-     },
 
-     flyRuntimeUpdate: {
 
-         url: config.base_url + "fly_runtime/update",
 
-         type: "post",
 
-     },
 
-     flyRuntimeGet: {
 
-         url: config.base_url + "fly_runtime/get",
 
-         type: "get",
 
-     },
 
-     flyRuntimeLoad: {
 
-         url: config.base_url + "fly_runtime/load",
 
-         type: "get",
 
-     },
 
-     flyGetNewImage:{
 
-         url: config.base_url + "fly_runtime/getNewImage",
 
-         type: "get",
 
-     }
 
- }
 
 
  |