decla-red/frontend/src/scripts/identity/identity-manager.ts
schmelczerandras 40a660b7cb Add linting
2020-08-18 16:52:11 +02:00

8 lines
150 B
TypeScript

import { v4 } from 'uuid';
import { Id } from './identity';
export class IdentityManager {
public static generateId(): Id {
return v4();
}
}