mirror of
https://github.com/sotam0316/brain_dogfood.git
synced 2026-04-24 19:48:35 +09:00
11 lines
184 B
JavaScript
11 lines
184 B
JavaScript
/**
|
|
* 전역 시스템 상수 (Global System Constants)
|
|
*/
|
|
export const Constants = {
|
|
GROUPS: {
|
|
DEFAULT: 'default',
|
|
FILES: 'files',
|
|
DONE: 'done'
|
|
}
|
|
};
|