Add command that returns information about a plugin
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / DefaultFcpClient.java
index 3f485c0..fe7300d 100644 (file)
@@ -129,5 +129,10 @@ public class DefaultFcpClient implements FcpClient {
                return new RemovePluginCommandImpl(threadPool, this::connect);
        }
 
+       @Override
+       public GetPluginInfoCommand getPluginInfo() {
+               return new GetPluginInfoCommandImpl(threadPool, this::connect);
+       }
+
 }