Skip to content

Commit c133a99

Browse files
authored
Merge pull request #256 from botblock/feature/add-listcord.gg
Add 1 new Site
2 parents c5bf2a1 + b465763 commit c133a99

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins{
77
id 'com.github.johnrengelman.shadow' version '5.2.0'
88
}
99

10-
def ver = new Version(major: 6, minor: 7, patch: 2)
10+
def ver = new Version(major: 6, minor: 7, patch: 3)
1111

1212
allprojects {
1313
apply plugin: 'maven-publish'

core/src/main/java/org/botblock/javabotblockapi/core/Info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class Info{
3939
/**
4040
* Patch version of the Wrapper.
4141
*/
42-
public static final int PATCH = 2;
42+
public static final int PATCH = 3;
4343

4444
/**
4545
* Full version in the format {@code major.minor.patch}.

core/src/main/java/org/botblock/javabotblockapi/core/Site.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,17 @@ public class Site{
258258
*/
259259
public static final Site INFINITYBOTLIST_XYZ = new Site("infinitybotlist.xyz", HttpMethod.GET, HttpMethod.POST);
260260

261+
/**
262+
* <a href="https://listcord.gg" target="_blank">listcord.gg</a>
263+
*
264+
* <p>Supported methods:
265+
* <ul>
266+
* <li>GET</li>
267+
* <li>POST</li>
268+
* </ul>
269+
*/
270+
public static final Site LISTCORD_GG = new Site("listcord.gg", HttpMethod.GET, HttpMethod.POST);
271+
261272
/**
262273
* <a href="https://motiondevelopment.top" target="_blank">motiondevelopment.top</a>
263274
*

0 commit comments

Comments
 (0)