mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2026-01-14 06:07:23 +08:00
12 lines
348 B
TypeScript
12 lines
348 B
TypeScript
import { app, ipcMain } from 'electron'
|
|
import path from 'path'
|
|
|
|
const defaultPath = path.join(app.getPath('home'), '.cherry-ai')
|
|
|
|
export function initStore() {
|
|
ipcMain.on('storage.set', (_, args) => {})
|
|
ipcMain.on('storage.get', (_, args) => {})
|
|
ipcMain.on('storage.delete', (_, args) => {})
|
|
ipcMain.on('storage.clear', (_, args) => {})
|
|
}
|