uuid.ts 174 B

123456789
  1. import { tools } from '@repo/api-service'
  2. export const getUUID = async () => {
  3. const res = await tools.postOpenapiDoBatchGenerateUuid({
  4. count: 5
  5. })
  6. return res.result
  7. }