aboutsummaryrefslogtreecommitdiff
path: root/src/tools/uuid-generator/index.ts
blob: 2b4b3d34d2cde49b2890ce01e29be5aa8c8fca8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { Fingerprint } from '@vicons/tabler';
import { defineTool } from '../tool';

export const tool = defineTool({
  name: 'UUIDs v4 generator',
  path: '/uuid-generator',
  description:
    'A universally unique identifier (UUID) is a 128-bit number used to identify information in computer systems. The number of possible UUIDs is 16^32, which is 2^128 or about 3.4x10^38 (which is a lot !).',
  keywords: ['uuid', 'v4', 'random', 'id', 'alphanumeric', 'identity', 'token', 'string', 'identifier', 'unique'],
  component: () => import('./uuid-generator.vue'),
  icon: Fingerprint,
});