Added application settings and basic filewatcher.

This commit is contained in:
Patrick Fic
2020-10-13 12:59:43 -07:00
parent 36b3719df0
commit 6dddd4bdf0
10 changed files with 207 additions and 18 deletions

11
src/ipc.types.js Normal file
View File

@@ -0,0 +1,11 @@
exports.default = {
test: {
start: "test-start",
},
filewatcher: {
start: "filewatcher__start",
startSuccess: "filewatcher__start-success",
startFailure: "filewatcher__start-failure",
stop: "filewatcher__stop",
},
};