feat: implement unix to date converter (#184)

This commit is contained in:
c.bringer
2025-07-18 13:34:24 +02:00
parent ad2c70841f
commit a2d6444cef
7 changed files with 250 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('time', {
i18n: {
name: 'time:convertUnixToDate.title',
description: 'time:convertUnixToDate.description',
shortDescription: 'time:convertUnixToDate.shortDescription',
longDescription: 'time:convertUnixToDate.longDescription'
},
path: 'convert-unix-to-date',
icon: 'material-symbols:schedule',
keywords: ['convert', 'unix', 'to', 'date'],
component: lazy(() => import('./index'))
});