mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 21:37:11 -04:00
12 lines
352 B
TypeScript
12 lines
352 B
TypeScript
import { Lock } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'Pdf Encrypt',
|
|
path: '/pdf-encrypt',
|
|
description: 'Encrypt and add protection to a PDF File',
|
|
keywords: ['pdf', 'encrypt'],
|
|
component: () => import('./pdf-encrypt.vue'),
|
|
icon: Lock,
|
|
createdAt: new Date('2024-01-09'),
|
|
});
|