Skip to content

Latest commit

 

History

History
35 lines (31 loc) · 938 Bytes

README.md

File metadata and controls

35 lines (31 loc) · 938 Bytes

Discord4J Rest

The rest module provides a low-level HTTP client specifically for Discord which properly handles Discord's ratelimiting system.

Installation

Just replace @VERSION@ with the latest given by

Gradle

repositories {
  mavenCentral()
}

dependencies {
  implementation 'com.discord4j:discord4j-rest:@VERSION@'
}

Maven

<dependencies>
  <dependency>
    <groupId>com.discord4j</groupId>
    <artifactId>discord4j-rest</artifactId>
    <version>@VERSION@</version>
  </dependency>
</dependencies>

SBT

libraryDependencies ++= Seq(
  "com.discord4j" % "discord4j-rest" % "@VERSION@"
)

Development builds

Please follow our instructions at Using Jitpack