aboutsummaryrefslogtreecommitdiff
path: root/src/index.js
diff options
context:
space:
mode:
author0neGal <mail@0negal.com>2022-01-23 01:56:27 +0100
committer0neGal <mail@0negal.com>2022-01-23 01:56:27 +0100
commit4f8884ea68c1360a7b0adec2386c60c7dc65c281 (patch)
treeb39d3be6ffa189769a19e93bf57a78aed1e1f43e /src/index.js
parenta6dae7791e2f1a82e9f37e6a41961d77698c9a77 (diff)
downloadViper-4f8884ea68c1360a7b0adec2386c60c7dc65c281.tar.gz
Viper-4f8884ea68c1360a7b0adec2386c60c7dc65c281.zip
moved modules into extras/
I moved requests.js into extras and made the function for finding the potentional gamepath into it's own module. I also made the exec() called Promise based.
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js
index 3f50840..f4207e7 100644
--- a/src/index.js
+++ b/src/index.js
@@ -8,7 +8,7 @@ const events = new Emitter();
const utils = require("./utils");
const cli = require("./cli");
-const requests = require("./requests");
+const requests = require("./extras/requests");
// Starts the actual BrowserWindow, which is only run when using the
// GUI, for the CLI this function is never called.