diff options
Diffstat (limited to 'src/tools/json-to-toml/index.ts')
-rw-r--r-- | src/tools/json-to-toml/index.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tools/json-to-toml/index.ts b/src/tools/json-to-toml/index.ts new file mode 100644 index 0000000..13e45ea --- /dev/null +++ b/src/tools/json-to-toml/index.ts @@ -0,0 +1,12 @@ +import { Braces } from '@vicons/tabler'; +import { defineTool } from '../tool'; + +export const tool = defineTool({ + name: 'JSON to TOML', + path: '/json-to-toml', + description: 'Parse and convert JSON to TOML.', + keywords: ['json', 'parse', 'toml', 'convert', 'transform'], + component: () => import('./json-to-toml.vue'), + icon: Braces, + createdAt: new Date('2023-06-23'), +}); |