Updated dir structure and paths
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { Autocomplete } from "@interfaces"
|
||||
import { Autocomplete } from "interfaces"
|
||||
|
||||
export = {
|
||||
name: "unban",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { color, devMessage } from "@config/options.json"
|
||||
import guildapp from "@schemas/guildAppSchema"
|
||||
import { color, devMessage } from "config/options.json"
|
||||
import guildapp from "schemas/guildAppSchema"
|
||||
import {
|
||||
bwfkdr,
|
||||
bwstars,
|
||||
@@ -8,7 +8,7 @@ import {
|
||||
swkdr,
|
||||
duelswins,
|
||||
duelswlr,
|
||||
} from "@config/reqs.json"
|
||||
} from "config/reqs.json"
|
||||
import {
|
||||
hypixelLevel,
|
||||
bedwarsLevel,
|
||||
@@ -16,8 +16,8 @@ import {
|
||||
getPlayer,
|
||||
getGuild,
|
||||
getHeadURL,
|
||||
} from "@utils/Hypixel"
|
||||
import { Button } from "@interfaces"
|
||||
} from "utils/Hypixel"
|
||||
import { Button } from "interfaces"
|
||||
|
||||
export = {
|
||||
name: "checkstats",
|
||||
|
||||
@@ -9,14 +9,14 @@ import {
|
||||
waitingListChannel,
|
||||
waitingListMessage,
|
||||
hypixelGuildID,
|
||||
} from "@config/options.json"
|
||||
import colorLog from "@utils/functions/colors"
|
||||
} from "config/options.json"
|
||||
import colorLog from "utils/functions/colors"
|
||||
import mongoose from "mongoose"
|
||||
import guildapp from "@schemas/guildAppSchema"
|
||||
import waitingList from "@schemas/waitinglistSchema"
|
||||
import { waitingListRole } from "@config/roles.json"
|
||||
import { Button } from "@interfaces"
|
||||
import { getGuild } from "@utils/Hypixel"
|
||||
import guildapp from "schemas/guildAppSchema"
|
||||
import waitingList from "schemas/waitinglistSchema"
|
||||
import { waitingListRole } from "config/roles.json"
|
||||
import { Button } from "interfaces"
|
||||
import { getGuild } from "utils/Hypixel"
|
||||
|
||||
export = {
|
||||
name: "guildapplicationaccept",
|
||||
|
||||
@@ -4,7 +4,7 @@ import {
|
||||
TextInputBuilder,
|
||||
TextInputStyle,
|
||||
} from "discord.js"
|
||||
import { Button } from "@interfaces"
|
||||
import { Button } from "interfaces"
|
||||
|
||||
export = {
|
||||
name: "guildapplicationdeny",
|
||||
|
||||
@@ -6,15 +6,15 @@ import {
|
||||
GuildMember,
|
||||
TextChannel,
|
||||
} from "discord.js"
|
||||
import { color } from "@config/options.json"
|
||||
import { largeM, smallM, ignM } from "@config/limitmessages.json"
|
||||
import { applicationsChannel } from "@config/options.json"
|
||||
import questions from "@config/questions.json"
|
||||
import { guildRole } from "@config/roles.json"
|
||||
import { getUUID } from "@utils/Hypixel"
|
||||
import { color } from "config/options.json"
|
||||
import { largeM, smallM, ignM } from "config/limitmessages.json"
|
||||
import { applicationsChannel } from "config/options.json"
|
||||
import questions from "config/questions.json"
|
||||
import { guildRole } from "config/roles.json"
|
||||
import { getUUID } from "utils/Hypixel"
|
||||
import mongoose from "mongoose"
|
||||
import guildapp from "@schemas/guildAppSchema"
|
||||
import { Button } from "@interfaces"
|
||||
import guildapp from "schemas/guildAppSchema"
|
||||
import { Button } from "interfaces"
|
||||
|
||||
export = {
|
||||
name: "guildapply",
|
||||
|
||||
@@ -14,11 +14,11 @@ import {
|
||||
member,
|
||||
guildStaff,
|
||||
guildRole,
|
||||
} from "@config/roles.json"
|
||||
import { ignM, smallM, largeM } from "@config/limitmessages.json"
|
||||
import { inactivity } from "@config/questions.json"
|
||||
import { color, inactivityLogChannel } from "@config/options.json"
|
||||
import { Button } from "@interfaces"
|
||||
} from "config/roles.json"
|
||||
import { ignM, smallM, largeM } from "config/limitmessages.json"
|
||||
import { inactivity } from "config/questions.json"
|
||||
import { color, inactivityLogChannel } from "config/options.json"
|
||||
import { Button } from "interfaces"
|
||||
const guildRoles = [
|
||||
gm,
|
||||
manager,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Button } from "@interfaces"
|
||||
import { Button } from "interfaces"
|
||||
|
||||
export = {
|
||||
name: "inactiveapplicationaccept",
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Button } from "@interfaces"
|
||||
import { Button } from "interfaces"
|
||||
|
||||
export = {
|
||||
name: "inactiveapplicationdeny",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { ActionRowBuilder, ButtonBuilder, ButtonStyle } from "discord.js"
|
||||
import { color } from "@config/options.json"
|
||||
import staffapp from "@schemas/staffAppSchema"
|
||||
import { Button } from "@interfaces"
|
||||
import { color } from "config/options.json"
|
||||
import staffapp from "schemas/staffAppSchema"
|
||||
import { Button } from "interfaces"
|
||||
|
||||
export = {
|
||||
name: "staffapplicationaccept",
|
||||
|
||||
@@ -4,7 +4,7 @@ import {
|
||||
TextInputBuilder,
|
||||
TextInputStyle,
|
||||
} from "discord.js"
|
||||
import { Button } from "@interfaces"
|
||||
import { Button } from "interfaces"
|
||||
|
||||
export = {
|
||||
name: "staffapplicationdeny",
|
||||
|
||||
@@ -6,16 +6,16 @@ import {
|
||||
GuildMember,
|
||||
TextChannel,
|
||||
} from "discord.js"
|
||||
import { color, staffApplicationsChannel } from "@config/options.json"
|
||||
import { largeM, ignM } from "@config/limitmessages.json"
|
||||
import questions from "@config/questions.json"
|
||||
import { guildRole, guildStaff } from "@config/roles.json"
|
||||
import { color, staffApplicationsChannel } from "config/options.json"
|
||||
import { largeM, ignM } from "config/limitmessages.json"
|
||||
import questions from "config/questions.json"
|
||||
import { guildRole, guildStaff } from "config/roles.json"
|
||||
import mongoose from "mongoose"
|
||||
import staffapp from "@schemas/staffAppSchema"
|
||||
import settings from "@schemas/settingsSchema"
|
||||
import { getUUID } from "@utils/Hypixel"
|
||||
import { Button } from "@interfaces"
|
||||
import env from "@utils/Env"
|
||||
import staffapp from "schemas/staffAppSchema"
|
||||
import settings from "schemas/settingsSchema"
|
||||
import { getUUID } from "utils/Hypixel"
|
||||
import { Button } from "interfaces"
|
||||
import env from "utils/Env"
|
||||
|
||||
export = {
|
||||
name: "staffapply",
|
||||
|
||||
@@ -4,7 +4,7 @@ import {
|
||||
TextInputBuilder,
|
||||
TextInputStyle,
|
||||
} from "discord.js"
|
||||
import { Button } from "@interfaces"
|
||||
import { Button } from "interfaces"
|
||||
|
||||
export = {
|
||||
name: "verify",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import waitinglist from "@schemas/waitinglistSchema"
|
||||
import { getGuild } from "@utils/Hypixel"
|
||||
import { hypixelGuildID } from "@config/options.json"
|
||||
import { Button } from "@interfaces"
|
||||
import waitinglist from "schemas/waitinglistSchema"
|
||||
import { getGuild } from "utils/Hypixel"
|
||||
import { hypixelGuildID } from "config/options.json"
|
||||
import { Button } from "interfaces"
|
||||
|
||||
export = {
|
||||
name: "waitinglistupdate",
|
||||
|
||||
@@ -6,9 +6,9 @@ import {
|
||||
Message,
|
||||
GuildMember,
|
||||
} from "discord.js"
|
||||
import { color } from "@config/options.json"
|
||||
import guildapp from "@schemas/guildAppSchema"
|
||||
import { Modal } from "@interfaces"
|
||||
import { color } from "config/options.json"
|
||||
import guildapp from "schemas/guildAppSchema"
|
||||
import { Modal } from "interfaces"
|
||||
|
||||
export = {
|
||||
name: "denyreasonbox",
|
||||
|
||||
@@ -4,9 +4,9 @@ import {
|
||||
ButtonBuilder,
|
||||
ButtonStyle,
|
||||
} from "discord.js"
|
||||
import { color } from "@config/options.json"
|
||||
import staffapp from "@schemas/staffAppSchema"
|
||||
import { Modal } from "@interfaces"
|
||||
import { color } from "config/options.json"
|
||||
import staffapp from "schemas/staffAppSchema"
|
||||
import { Modal } from "interfaces"
|
||||
|
||||
export = {
|
||||
name: "staffdenyreasonbox",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { getUUID, getPlayer, getGuild, getHeadURL } from "@utils/Hypixel"
|
||||
import { color, hypixelGuildID, devMessage } from "@config/options.json"
|
||||
import verify from "@schemas/verifySchema"
|
||||
import { getUUID, getPlayer, getGuild, getHeadURL } from "utils/Hypixel"
|
||||
import { color, hypixelGuildID, devMessage } from "config/options.json"
|
||||
import verify from "schemas/verifySchema"
|
||||
import mongoose from "mongoose"
|
||||
import {
|
||||
gm,
|
||||
@@ -12,8 +12,8 @@ import {
|
||||
guildRole,
|
||||
guildStaff,
|
||||
defaultMember,
|
||||
} from "@config/roles.json"
|
||||
import { Modal } from "@interfaces"
|
||||
} from "config/roles.json"
|
||||
import { Modal } from "interfaces"
|
||||
import { GuildMember } from "discord.js"
|
||||
|
||||
export = {
|
||||
|
||||
Reference in New Issue
Block a user