Basic storage of watched paths.

This commit is contained in:
Patrick Fic
2025-03-12 15:31:35 -07:00
parent fb991670fe
commit a01d4bfb44
9 changed files with 131 additions and 7 deletions

View File

@@ -3,11 +3,13 @@
const Store = require("electron-store").default;
const store = new Store({
defaults: {
filePaths: [],
runWatcherOnStartup: true,
polling: {
enabled: false,
pollingInterval: 30000,
settings: {
filepaths: [],
runWatcherOnStartup: true,
polling: {
enabled: false,
pollingInterval: 30000,
},
},
user: null,
},