Skip to content
This repository has been archived by the owner on Nov 19, 2019. It is now read-only.

Commit

Permalink
Move const declaration below imports
Browse files Browse the repository at this point in the history
  • Loading branch information
kyogoi committed Oct 7, 2019
1 parent 6b5def0 commit e230d25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
(async () => {
const Discord = require('discord.js');
const bot = new Discord.Client();
const config = require(__dirname + '/../config.json');
const sqlite = require('sqlite');
const bot = new Discord.Client();
const db = await sqlite.open(__dirname + '/../db/channels.db');

async function purgeAll() {
Expand Down

0 comments on commit e230d25

Please sign in to comment.