iot-manage-dashboard/apps/backend-mock/api/profile/timezone.ts
2025-10-22 19:52:01 +08:00

8 lines
234 B
TypeScript

import { eventHandler } from 'h3';
import { TIME_ZONE_OPTIONS } from '~/utils/mock-data';
import { useResponseSuccess } from '~/utils/response';
export default eventHandler(() => {
return useResponseSuccess(TIME_ZONE_OPTIONS);
});