2023-08-08 14:03:12 +07:00
|
|
|
/**ใช้รวมไฟล์ย่อยๆ ของ api แต่ละไฟล์ */
|
|
|
|
|
|
|
|
|
|
/** API Metadata */
|
2024-02-02 17:18:33 +07:00
|
|
|
import testtest from "./api/test/api.test";
|
|
|
|
|
import retirementResign from "./api/leave/api.leave";
|
|
|
|
|
import placementTransfer from "./api/transfer/api.transfer";
|
|
|
|
|
import appeal from "./api/appeal/api.appeal";
|
|
|
|
|
import message from "./api/api.message";
|
2023-12-14 14:49:27 +07:00
|
|
|
import evaluate from "./api/evaluate/api.evaluate";
|
2024-02-02 17:18:33 +07:00
|
|
|
import support from "./api/support/api.support";
|
2023-08-08 14:03:12 +07:00
|
|
|
|
|
|
|
|
const API = {
|
2023-12-14 13:44:10 +07:00
|
|
|
...testtest,
|
|
|
|
|
...retirementResign,
|
|
|
|
|
...placementTransfer,
|
|
|
|
|
...message,
|
2023-12-14 14:49:27 +07:00
|
|
|
...evaluate,
|
2024-02-02 17:18:33 +07:00
|
|
|
...appeal,
|
|
|
|
|
...support,
|
2023-12-14 13:44:10 +07:00
|
|
|
};
|
2023-08-08 14:03:12 +07:00
|
|
|
|
|
|
|
|
export default {
|
2023-12-14 13:44:10 +07:00
|
|
|
API: API,
|
|
|
|
|
};
|