From 25f984fa62fb2fee546458d0173abc98698b8f69 Mon Sep 17 00:00:00 2001 From: msaaddev Date: Wed, 8 Apr 2020 20:39:31 +0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=8C=20IMPROVE:=20change=20location?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/authentication.js => authentication.js | 2 +- index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename utils/authentication.js => authentication.js (96%) diff --git a/utils/authentication.js b/authentication.js similarity index 96% rename from utils/authentication.js rename to authentication.js index a5a5dca..ad2a8a0 100644 --- a/utils/authentication.js +++ b/authentication.js @@ -1,6 +1,6 @@ const fs = require("fs"); const io = require("console-read-write"); -const auth = require("../auth.js"); +const auth = require("./auth.js"); const { green, red, yellow } = require("chalk"); module.exports = async () => { diff --git a/index.js b/index.js index 31052ec..60e259c 100644 --- a/index.js +++ b/index.js @@ -8,7 +8,7 @@ const header = require("./utils/header.js"); const options = require("./utils/options.js"); -const auth = require("./utils/authentication.js"); +const auth = require("./authentication.js"); const cli = async () => { header();