Initial commit

This commit is contained in:
2023-11-03 21:12:55 +01:00
parent a4afe6cc85
commit 57362e7520
39 changed files with 3505 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
config = require("./config/main.json")
readline = require("readline")
mysql = require("mysql")
fs = require("fs")
colors = require("colors");
express = require('express')
bodyParser = require("body-parser")
bcrypt = require("bcrypt")
Hashids = require("hashids/cjs")
// - Global Variables
// -- Shortcodes cache
shortcodes = {}
// -- BCrypt
saltRounds = 10
// -- HashIDs
hashids = new Hashids("", 6)
// -- Ratelimit
ratelimit = {}
// -- Ip Bans
ignorelist = {}