0
0
Fork 0

Move everything for the server in to a server folder to make room for the site

This commit is contained in:
Oliver-Akins 2021-09-24 22:58:23 -06:00
parent 6a45152d8f
commit 33ca09808e
26 changed files with 8 additions and 6 deletions

16
server/src/constants.ts Normal file
View file

@ -0,0 +1,16 @@
export var BRACKET_DATA = {
msg: "",
quotes: [],
votes: {},
users: {},
};
export var CHANNEL_DATA = {
webhook: {
token: "",
id: "",
},
bracket: BRACKET_DATA,
};
export var DISCORD_API_URI: string = `https://discord.com/api/v9`;