Move unliking a post from Sone to Post.
[Sone.git] / src / main / java / net / pterodactylus / sone / database / PostDatabase.java
index 9480071..8bdca6c 100644 (file)
@@ -99,4 +99,7 @@ public interface PostDatabase {
         */
        void removePosts(Sone sone);
 
+       void likePost(Post post, Sone localSone);
+       void unlikePost(Post post, Sone localSone);
+
 }