zammad/app/frontend/shared/utils/getUuid.ts
2026-01-02 15:41:09 +02:00

7 lines
166 B
TypeScript

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