Make constructor public and include it in the FCP interface’s commands.
[Sone.git] / src / main / java / net / pterodactylus / sone / fcp / FcpInterface.java
index 0ca2f1f..7b3663f 100644 (file)
@@ -62,6 +62,7 @@ public class FcpInterface {
        public FcpInterface(Core core) {
                commands.put("Version", new VersionCommand());
                commands.put("GetLocalSones", new GetLocalSonesCommand(core));
+               commands.put("GetPost", new GetPostCommand(core));
                commands.put("GetPosts", new GetPostsCommand(core));
                commands.put("GetPostFeed", new GetPostFeedCommand(core));
                commands.put("LikePost", new LikePostCommand(core));