8 lines
286 B
TypeScript
8 lines
286 B
TypeScript
/**
|
|
* api บรรจุ แต่งตั้ง ย้าย โอน
|
|
*/
|
|
import env from "../index";
|
|
const orgTree = `${env.API_URI_ORG_TREE}`;
|
|
const placement = `${env.API_URI}/Placement/placement`;
|
|
|
|
export default { orgTree: orgTree, placementPass: () => `${placement}/pass` };
|