mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 13:57:10 -04:00
23 lines
562 B
TypeScript
23 lines
562 B
TypeScript
import { FileInvoice } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.chmod-calculator.title'),
|
|
path: '/chmod-calculator',
|
|
description: translate('tools.chmod-calculator.description'),
|
|
keywords: [
|
|
'chmod',
|
|
'calculator',
|
|
'file',
|
|
'permission',
|
|
'files',
|
|
'directory',
|
|
'folder',
|
|
'recursive',
|
|
'generator',
|
|
'octal',
|
|
],
|
|
component: () => import('./chmod-calculator.vue'),
|
|
icon: FileInvoice,
|
|
});
|