mirror of
https://github.com/sotam0316/drawNET.git
synced 2026-04-25 12:08:36 +09:00
15 lines
459 B
JavaScript
15 lines
459 B
JavaScript
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
|
|
};
|