2025-02-23 08:11:47 +00:00
|
|
|
import { SupportedLanguage } from "@/constants/language";
|
|
|
|
|
2025-02-25 06:39:41 +00:00
|
|
|
export const DEFAULT_EDITOR_PATH: Record<SupportedLanguage, string> = {
|
2025-02-23 08:11:47 +00:00
|
|
|
c: "file:///main.c",
|
|
|
|
cpp: "file:///main.cpp",
|
|
|
|
};
|