refactor(desktop): extract IPC channels and handlers into src/ipc/

This commit is contained in:
CREDO23 2026-03-20 20:06:21 +02:00
parent b6a7f0afa7
commit fb4dbf04ae
3 changed files with 28 additions and 16 deletions

View file

@ -0,0 +1,6 @@
export const IPC_CHANNELS = {
OPEN_EXTERNAL: 'open-external',
GET_APP_VERSION: 'get-app-version',
DEEP_LINK: 'deep-link',
GET_CLIPBOARD_CONTENT: 'get-clipboard-content',
} as const;