Add “GetLocalSones” FCP command.
[Sone.git] / src / main / java / net / pterodactylus / sone / fcp / FcpInterface.java
index 8841f63..81928dd 100644 (file)
@@ -51,6 +51,7 @@ public class FcpInterface {
         */
        public FcpInterface(Core core) {
                commands.put("Version", new VersionCommand());
+               commands.put("GetLocalSones", new GetLocalSonesCommand(core));
                commands.put("GetPostFeed", new GetPostFeedCommand(core));
        }