Add “GetPosts” FCP command.
[Sone.git] / src / main / java / net / pterodactylus / sone / fcp / FcpInterface.java
index 3a64bbf..55b7afc 100644 (file)
@@ -52,6 +52,7 @@ public class FcpInterface {
        public FcpInterface(Core core) {
                commands.put("Version", new VersionCommand());
                commands.put("GetLocalSones", new GetLocalSonesCommand(core));
+               commands.put("GetPosts", new GetPostsCommand(core));
                commands.put("GetPostFeed", new GetPostFeedCommand(core));
        }