BudgetToaster / dcf4j

A java command framework for discord. This framework automatically checks syntax, and has many options for customization so you can do more with less.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DCF4J

A kotlin command framework for discord. This framework automatically checks syntax, and has many options for customization to write more with less.

Requirements

dcf4j requires Discord4J to be installed. Discord4J can be found at its official github repo. After installing Discord4J follow the instructions below.

Maven

Add the following to your pom.xml, substituting %version% for your desired version.

<repositories>
  <repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
  </repository>
</repositories>
<dependency>
  <groupId>com.github.BanePig</groupId>
  <artifactId>dcf4j</artifactId>
  <version>%version%</version>
</dependency>

Gradle

Add the following to your build.gradle, substituting %version% for your desired version.

allprojects {
  repositories {
    maven { url 'https://jitpack.io' }
  }
}
dependencies {
  implementation 'com.github.BanePig:dcf4j:%version%'
}

Usage

Information on usage can be found in the wiki.

About

A java command framework for discord. This framework automatically checks syntax, and has many options for customization so you can do more with less.

License:MIT License


Languages

Language:Kotlin 89.0%Language:Java 11.0%