feat(new-tool): json to toml

This commit is contained in:
Corentin Thomasset 2023-06-23 21:40:30 +02:00 committed by Corentin THOMASSET
parent 746e5bdccc
commit ea50a3fc65
5 changed files with 83 additions and 0 deletions

View file

@ -1,6 +1,7 @@
import { tool as base64FileConverter } from './base64-file-converter';
import { tool as base64StringConverter } from './base64-string-converter';
import { tool as basicAuthGenerator } from './basic-auth-generator';
import { tool as jsonToToml } from './json-to-toml';
import { tool as tomlToYaml } from './toml-to-yaml';
import { tool as tomlToJson } from './toml-to-json';
import { tool as jsonToCsv } from './json-to-csv';
@ -81,6 +82,7 @@ export const toolsByCategory: ToolCategory[] = [
textToNatoAlphabet,
yamlToJson,
jsonToYaml,
jsonToToml,
listConverter,
tomlToJson,
tomlToYaml,