hrms-checkin/src/app.config.ts
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 7afdc64e8f feat: noti checkin
2026-05-15 14:01:31 +07:00

21 lines
437 B
TypeScript

/**ใช้รวมไฟล์ย่อยๆ ของ api แต่ละไฟล์ */
/** API ระบบลงเวลา */
import leave from '@/api/api.checkin'
import history from '@/api/api.history'
import message from '@/api/api.message'
import socket from '@/api/socket'
const API = {
/**leave */
...leave,
/**history */
...history,
/**message */
...message,
...socket,
}
export default {
API: API,
}