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

com.digitaldan.harmony.shell.GetConfigCommand Maven / Gradle / Ivy

package com.digitaldan.harmony.shell;

import com.digitaldan.harmony.HarmonyClient;

public class GetConfigCommand extends ShellCommand {
    @Override
    public void execute(HarmonyClient harmonyClient) {
        harmonyClient.getConfig().thenAccept(config -> {
            println(config.toJson());
        });

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy