/donatebot-java-api

A Java library for Donate Bot API

Primary LanguageJavaMIT LicenseMIT

Donate Bot Java API

A Donate Bot API client for Java

Installation

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.

Maven

<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>

Gradle

repositories {
    maven { url 'https://jitpack.io' }
}
dependencies {
        implementation 'com.github.top-gg:donatebot-java-api:VERSION'
}

Documentation

Click here to read the documentation for this API client.

Usage

import io.donatebot.api.*;

public static void main(String[] args)  {
    DBClient dbClient = new DBClient("My Discord Server ID", "My API Key");
}