mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
10 lines
186 B
TypeScript
10 lines
186 B
TypeScript
export const LOG_END_SYMBOL = ' ';
|
||
|
||
export const LANG_MAP = {
|
||
'.py': 'python',
|
||
'.js': 'javascript',
|
||
'.mjs': 'javascript',
|
||
'.sh': 'shell',
|
||
'.ts': 'typescript',
|
||
};
|