This commit is contained in:
pixtaded 2025-02-26 21:29:39 +03:00
parent 178af21d98
commit adb5156157
2 changed files with 12 additions and 1 deletions

View File

@ -7,4 +7,15 @@ version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation("net.dv8tion:JDA:5.3.0") { // replace $version with the latest version
// Optionally disable audio natives to reduce jar size by excluding `opus-java`
// Gradle DSL:
exclude module: 'opus-java'
// Kotlin DSL:
// exclude(module="opus-java")
}
compileOnly('org.jetbrains:annotations:26.0.2')
}

View File

@ -1,6 +1,6 @@
package ru.emotilt.antiplatka;
public class Main {
public class Bot {
public static void main(String[] args) {
System.out.println("Hello, World!");
}