mirror of
https://github.com/fanchenio/DawnLauncher.git
synced 2025-07-13 12:52:10 +08:00
13 lines
215 B
TypeScript
13 lines
215 B
TypeScript
import Store from "electron-store";
|
|
import { getUserDataPath } from ".";
|
|
|
|
const cacheStore = new Store({
|
|
name: "Cache",
|
|
clearInvalidConfig: true,
|
|
cwd: getUserDataPath(),
|
|
});
|
|
|
|
export default {
|
|
cacheStore,
|
|
};
|