Add command to retrieve the node’s config
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / GetConfigCommand.java
1 package net.pterodactylus.fcp.quelaton;
2
3 import net.pterodactylus.fcp.ConfigData;
4
5 /**
6  * Command that retrieves the node’s configuration.
7  *
8  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
9  */
10 public interface GetConfigCommand extends Executable<ConfigData> {
11
12 }