update uuid imports

This commit is contained in:
William Welling
2021-11-17 21:58:47 -06:00
parent dc9e93a907
commit ebf900686b
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
import * as uuidv4 from 'uuid/v4';
import { v4 as uuidv4 } from 'uuid';
import { autoserialize, Serialize, Deserialize } from 'cerialize';
import { hasValue } from '../../shared/empty.util';
/* tslint:disable:max-classes-per-file */

View File

@@ -1,5 +1,5 @@
import { Injectable } from '@angular/core';
import * as uuidv4 from 'uuid/v4';
import { v4 as uuidv4 } from 'uuid';
@Injectable()
export class UUIDService {