feat(config): add default file paths for supported languages

This commit is contained in:
cfngc4594 2025-02-23 16:11:47 +08:00
parent 4cd56f6fab
commit 545f094f49

6
src/config/path.ts Normal file
View File

@ -0,0 +1,6 @@
import { SupportedLanguage } from "@/constants/language";
export const DEFAULT_PATH: Record<SupportedLanguage, string> = {
c: "file:///main.c",
cpp: "file:///main.cpp",
};