A Donate Bot API client for Java
Replace VERSION
with the latest version or commit hash. The latest version can be found under releases. You can also add the JAR from releases into your Java project.
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.top-gg</groupId>
<artifactId>donatebot-java-api</artifactId>
<version>VERSION</version>
</dependency>
</dependencies>
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.top-gg:donatebot-java-api:VERSION'
}
Click here to read the documentation for this API client.
import io.donatebot.api.*;
public static void main(String[] args) {
DBClient dbClient = new DBClient("My Discord Server ID", "My API Key");
}