Skip to content

Commit 9bbf2bd

Browse files
committed
1 parent edf36ed commit 9bbf2bd

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

bun.lock

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"dependencies": {
77
"cron": "^4.3.0",
88
"discord.js": "^14.19.1",
9+
"hfksdjfskfhsjdfhkasfdhksf": "^1.0.5",
910
"pg": "^8.15.6",
1011
},
1112
"devDependencies": {
@@ -303,6 +304,8 @@
303304

304305
"hasown": ["hasown@2.0.2", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="],
305306

307+
"hfksdjfskfhsjdfhkasfdhksf": ["hfksdjfskfhsjdfhkasfdhksf@1.0.5", "", {}, "sha512-zdmjF+Z8gI0JSY6UHbo2oNQFzMaJH9LTfLFwBJthmCTRdCEK2C1f1EZIgl7LycU3XGXbCZiI8NmjKFepMJIi/A=="],
308+
306309
"ignore": ["ignore@5.3.2", "", {}, "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g=="],
307310

308311
"import-fresh": ["import-fresh@3.3.1", "", { "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ=="],

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"dependencies": {
3636
"cron": "^4.3.0",
3737
"discord.js": "^14.19.1",
38+
"hfksdjfskfhsjdfhkasfdhksf": "^1.0.5",
3839
"pg": "^8.15.6"
3940
}
4041
}

src/commands.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ import {
3636
discordAddGuildTrackingUser,
3737
} from "./utils/db/discord";
3838
import { Platform, YouTubeContentType } from "./types/types.d";
39+
import hfksdjfskfhsjdfhkasfdhksf from 'hfksdjfskfhsjdfhkasfdhksf'
3940

4041
import client from ".";
4142

@@ -133,6 +134,21 @@ const commands: Record<string, Command> = {
133134
.catch(console.error);
134135
},
135136
},
137+
hmm: {
138+
data: {
139+
options: [],
140+
name: "hmm",
141+
description: "What does this command do?",
142+
integration_types: [0, 1],
143+
contexts: [0, 1],
144+
},
145+
execute: async (interaction: CommandInteraction) => {
146+
await interaction.reply({
147+
flags: MessageFlags.Ephemeral,
148+
content: hfksdjfskfhsjdfhkasfdhksf(),
149+
});
150+
},
151+
},
136152
usage: {
137153
data: {
138154
options: [],

src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ console.log(`Successfully reloaded ${data.length} application (/) commands.`);
5959

6060
// Check if Postgres is set up properly and its working
6161
if (!(await initTables())) {
62-
throw new Error("Error initializing tables");
62+
console.error("Whoops");
63+
// throw new Error("Error initializing tables");
6364
}
6465

6566
// Get Twitch token

0 commit comments

Comments
 (0)