Skip to content
This repository was archived by the owner on Jun 19, 2024. It is now read-only.

README.md Update #14

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,34 @@

Our new Server API allows you to communicate between the LabyMod client and the server by using simple JSON messages. It also allows you to enable or disable LabyMod features.
If you want to find out how our API works, visit https://docs.labymod.net/pages/server/introduction/

Creating Plugin with LabyMod API
----------------

```groovy
repositories {
maven { url 'https://jitpack.io' }
}

dependencies {
implementation 'com.github.LabyMod:labymod-server-api:Tag'
}
```

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

<dependencies>
<dependency>
<groupId>com.github.LabyMod</groupId>
<artifactId>labymod-server-api</artifactId>
<version>Tag</version>
</dependency>
</dependencies>
```