mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-09 05:09:39 +00:00
10 lines
357 B
TypeScript
10 lines
357 B
TypeScript
import { app } from 'electron'
|
|
import { join } from 'path'
|
|
|
|
// Data paths
|
|
export const dataPath = join(app.getPath('userData'), 'bridge_data')
|
|
export const libraryPath = join(dataPath, 'library.db')
|
|
export const settingsPath = join(dataPath, 'settings.json')
|
|
export const tempPath = join(dataPath, 'temp')
|
|
export const themesPath = join(dataPath, 'themes')
|