Files
iot-device-management-frontend/apps/backend-mock/api/timezone/getTimezoneOptions.ts

8 lines
234 B
TypeScript
Raw Normal View History

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);
});