We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f572548 commit 25f984fCopy full SHA for 25f984f
2 files changed
βutils/authentication.jsβ βauthentication.jsβutils/authentication.js renamed to authentication.js
@@ -1,6 +1,6 @@
1
const fs = require("fs");
2
const io = require("console-read-write");
3
-const auth = require("../auth.js");
+const auth = require("./auth.js");
4
const { green, red, yellow } = require("chalk");
5
6
module.exports = async () => {
βindex.jsβ
@@ -8,7 +8,7 @@
8
9
const header = require("./utils/header.js");
10
const options = require("./utils/options.js");
11
-const auth = require("./utils/authentication.js");
+const auth = require("./authentication.js");
12
13
const cli = async () => {
14
header();
0 commit comments