From 545f094f49472368a4ab37e08e7c20ff9fbdd74a Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Sun, 23 Feb 2025 16:11:47 +0800 Subject: [PATCH] feat(config): add default file paths for supported languages --- src/config/path.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/config/path.ts diff --git a/src/config/path.ts b/src/config/path.ts new file mode 100644 index 0000000..1790817 --- /dev/null +++ b/src/config/path.ts @@ -0,0 +1,6 @@ +import { SupportedLanguage } from "@/constants/language"; + +export const DEFAULT_PATH: Record = { + c: "file:///main.c", + cpp: "file:///main.cpp", +};