Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 797 Bytes

README.md

File metadata and controls

34 lines (26 loc) · 797 Bytes

REYDEN-X

Reyden-X is an automated service for promoting live broadcasts on external sites with integrated system of viewers and views management.

Usage

<dependency>
    <groupId>io.github.pixel365</groupId>
    <artifactId>reydenx</artifactId>
    <version>1.5</version>
</dependency>

Quickstart

import com.reydenx.Client;
import com.reydenx.models.ResultModel;
import com.reydenx.models.OrderModel;

try {
    Client client = new Client("USERNAME", "PASSWORD");
    ResultModel<OrderModel> result = client.getOrderInstance()
        .orderDetails(123456);
    System.out.println(result.getResult().getId());
} catch (Throwable e) {
    e.printStackTrace();
}