mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 23:13:04 +00:00
10 lines
173 B
TypeScript
10 lines
173 B
TypeScript
import { Injectable } from '@angular/core';
|
|
import { v4 as uuidv4 } from 'uuid';
|
|
|
|
@Injectable()
|
|
export class UUIDService {
|
|
generate(): string {
|
|
return uuidv4();
|
|
}
|
|
}
|