Add command that modifies the note of a peer
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / DefaultFcpClient.java
index 0d180cb..1fc03bb 100644 (file)
@@ -101,5 +101,10 @@ public class DefaultFcpClient implements FcpClient {
                return new ListPeerNotesCommandImpl(threadPool, this::connect);
        }
 
+       @Override
+       public ModifyPeerNoteCommand modifyPeerNote() {
+               return new ModifyPeerNoteCommandImpl(threadPool, this::connect);
+       }
+
 }