🔀 Merge “release/v81” into “master”
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / database / PostReplyProvider.kt
index cc797d7..c29e443 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - PostReplyProvider.kt - Copyright Â© 2013–2019 David Roden
+ * Sone - PostReplyProvider.kt - Copyright Â© 2013–2020 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
 
 package net.pterodactylus.sone.database
 
+import com.google.inject.*
 import net.pterodactylus.sone.data.*
+import net.pterodactylus.sone.database.memory.*
 
 /**
  * Interface for objects that can provide [PostReply]s.
  */
+@ImplementedBy(MemoryDatabase::class)
 interface PostReplyProvider {
 
        fun getPostReply(id: String): PostReply?