hrms-mgt/src/api/05_placement/api.placement.ts

9 lines
286 B
TypeScript
Raw Normal View History

2023-06-01 12:54:58 +07:00
/**
* api
*/
import env from "../index";
const orgTree = `${env.API_URI_ORG_TREE}`;
const placement = `${env.API_URI}/Placement/placement`;
2023-06-01 12:54:58 +07:00
export default { orgTree: orgTree, placementPass: () => `${placement}/pass` };