Skip to content

YDWK/YDWK-Wiki

Repository files navigation

home heroImage heroText tagline actions
true
/ydwk-s.png
Yusuf Discord Wrapper Kotlin. An easy-to-use discord wrapper made in kotlin
text link type
View Docs →
/docs/
primary

💡 About YDWK

It is a discord wrapper made in kotlin that aims to be as simple and as fast as possible while still being easy to use and understand. It is built to be similar to discord.js but with some differences. It tries to adhere to the discord api as much as possible.

🔑 This api also comes with a library called JConfig

JConfig is library which allows you to set and get values from a config file. It is built to be simple and easy to use.

For more information, check out the special page for JConfig here.

📦 Installation

repositories {
    mavenCentral()
}
dependencies {
    implementation "io.github.realyusufismail:ydwk:${project.version}"
}
repositories {
    mavenCentral()
}
dependencies {
    implementation("io.github.realyusufismail:ydwk:${project.version}")
}
<dependency>
    <groupId>io.github.realyusufismail</groupId>
    <artifactId>ydwk</artifactId>
    <version>${project.version}</version>
</dependency>

::: details Click to see how to download the snapshot version

repositories {
    maven {
        url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
    }
}
dependencies {
    implementation "io.github.realyusufismail:ydwk:${latest-snapshot-version}"
}
repositories {
    maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
dependencies {
    implementation("io.github.realyusufismail:ydwk:${latest-snapshot-version}")
}
<repository>
    <id>snapshots-repo</id>
    <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
<dependency>
    <groupId>io.github.realyusufismail</groupId>
    <artifactId>ydwk</artifactId>
    <version>${latest-snapshot-version}</version>
<type>pom</type>
</dependency>