getTimezoneOptions.ts 234 B

1234567
  1. import { eventHandler } from 'h3';
  2. import { TIME_ZONE_OPTIONS } from '~/utils/mock-data';
  3. import { useResponseSuccess } from '~/utils/response';
  4. export default eventHandler(() => {
  5. return useResponseSuccess(TIME_ZONE_OPTIONS);
  6. });