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", } }