All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.arkecosystem.client.api.one.Loader Maven / Gradle / Ivy

The newest version!
package org.arkecosystem.client.api.one;

import com.google.gson.internal.LinkedTreeMap;
import org.arkecosystem.client.http.Client;

import java.io.IOException;

public class Loader {
    Client client;

    public Loader(Client client) {
        this.client = client;
    }

    public LinkedTreeMap status() throws IOException {
        return this.client.get("loader/status");
    }

    public LinkedTreeMap sync() throws IOException {
        return this.client.get("loader/status/sync");
    }

    public LinkedTreeMap autoconfigure() throws IOException {
        return this.client.get("loader/autoconfigure");
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy