Add command to subscribe to USK updates
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / DefaultFcpClient.java
index 3f485c0..255549c 100644 (file)
@@ -129,5 +129,15 @@ public class DefaultFcpClient implements FcpClient {
                return new RemovePluginCommandImpl(threadPool, this::connect);
        }
 
+       @Override
+       public GetPluginInfoCommand getPluginInfo() {
+               return new GetPluginInfoCommandImpl(threadPool, this::connect);
+       }
+
+       @Override
+       public SubscribeUskCommand subscribeUsk() {
+               return new SubscribeUskCommandImpl(threadPool, this::connect);
+       }
+
 }