Skip to content

Commit

Permalink
updated: README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
azzerial authored Jun 13, 2021
1 parent 8010919 commit 72dc990
Showing 1 changed file with 47 additions and 1 deletion.
48 changes: 47 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,20 @@
<h1>Slash Commands</h1>
<h4>An open source utility library for <a href="https://github.com/DV8FromTheWorld/JDA" target="_blank">JDA</a> to simplify the use of <a href="https://discord.com/developers/docs/interactions/slash-commands" target="_blank">Discord Slash Commands</a></h4>
</div>

<p align="center">
<a href="https://jitpack.io/#azzerial/slash-commands">
<img src="https://img.shields.io/jitpack/v/github/azzerial/slash-commands?color=green&label=JitPack">
</a>
<a href="https://github.com/Azzerial/slash-commands/blob/master/LICENSE">
<img src="https://img.shields.io/github/license/azzerial/slash-commands?color=lightgray&label=License&logo=apache">
</a>
</p>

<p align="center">
<a href="#features">Features</a> •
<a href="#how-to-use">How To Use</a> •
<a href="#installation">Installation</a> •
<a href="#license">License</a>
</p>

Expand Down Expand Up @@ -57,6 +68,41 @@ public final class SlashCommand {

*For more examples and usage, please refer to the [playground module](playground/).*

## Installation

This project uses [Jitpack](https://jitpack.io/#azzerial/slash-commands).

Latest release: [![](https://jitpack.io/v/azzerial/slash-commands.svg)](https://jitpack.io/#azzerial/slash-commands)

### Gradle

```groovy
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.azzerial.slash-commands:api:1.0'
}
```

### Maven

```xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>

<dependency>
<groupId>com.github.azzerial.slash-commands</groupId>
<artifactId>api</artifactId>
<version>1.0</version>
</dependency>
```

## License

This project is licensed under the [Apache License 2.0](LICENSE) © 2021 [Robin Mercier](https://github.com/azzerial/).
Expand All @@ -65,4 +111,4 @@ This project is licensed under the [Apache License 2.0](LICENSE) © 2021 [Robin

<p align="center">
GitHub <a href="https://github.com/azzerial">@Azzerial</a>
</p>
</p>

0 comments on commit 72dc990

Please sign in to comment.