static 폴더 및 하위 파일 업로드

This commit is contained in:
sotam0316
2026-04-22 12:05:03 +09:00
commit 514b209a5a
203 changed files with 29494 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { graphHandlers } from './handlers/graph.js';
import { uiHandlers } from './handlers/ui.js';
import { clipboardHandlers } from './handlers/clipboard.js';
import { ioHandlers } from './handlers/io.js';
/**
* actionHandlers - 단축키 동작을 기능별 모듈에서 취합하여 제공하는 매니페스트 객체입니다.
*/
export const actionHandlers = {
...graphHandlers,
...uiHandlers,
...clipboardHandlers,
...ioHandlers
};