utils.service.ts 198 B

123456789
  1. import { Injectable } from '@nestjs/common';
  2. import * as crypto from 'crypto';
  3. @Injectable()
  4. export class UtilsService {
  5. public generatePassword(): string {
  6. return crypto.randomUUID();
  7. }
  8. }