getUuid.ts 166 B

1234567
  1. // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. import { v4 as uuid } from 'uuid'
  3. const getUuid = () => uuid()
  4. export default getUuid