mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-22 17:00:14 +08:00
8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
import path from 'node:path'
|
|
|
|
import { app } from 'electron'
|
|
|
|
export function getResourcePath() {
|
|
return path.join(app.getAppPath(), 'resources')
|
|
}
|