diff options
author | 0neGal <mail@0negal.com> | 2022-01-23 01:56:27 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2022-01-23 01:56:27 +0100 |
commit | 4f8884ea68c1360a7b0adec2386c60c7dc65c281 (patch) | |
tree | b39d3be6ffa189769a19e93bf57a78aed1e1f43e /src/index.js | |
parent | a6dae7791e2f1a82e9f37e6a41961d77698c9a77 (diff) | |
download | Viper-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.js | 2 |
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. |