Add files via upload

This commit is contained in:
2024-07-07 18:48:34 +02:00
committed by GitHub
parent 4ea7a9bf86
commit 5220bf4af4
18 changed files with 3101 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
const { getVoiceConnection } = require("@discordjs/voice");
import { ERR, stopParameter } from "../managers/UtilityManager";
export function stop({
igi,
}: stopParameter) {
try {
const connection = getVoiceConnection(igi);
connection.destroy();
} catch (err) {
ERR();
}
};