Skip to content

Latest commit

 

History

History
24 lines (22 loc) · 447 Bytes

README.md

File metadata and controls

24 lines (22 loc) · 447 Bytes

lumaserv-api-java

Java Client for the LUMASERV API

Usage

Maven

<dependency>
    <groupId>com.lumaserv</groupId>
    <artifactId>lumaserv-api-client</artifactId>
    <version>1.0.0</version>
</dependency>

Example

CoreClient client = new CoreClient("YOUR_API_KEY");
try {
    client.getServers().getData().forEach(server -> {
        // Do whatever
    });
} catch (LUMASERVException ex) {
    // Handle error
}