Replace reply-specific interfaces with Kotlin versions
[Sone.git] / src / main / java / net / pterodactylus / sone / database / PostBuilderFactory.java
index b89ae28..e5cee38 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - PostBuilderFactory.java - Copyright © 2013 David Roden
+ * Sone - PostBuilderFactory.java - Copyright © 2013–2016 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 net.pterodactylus.sone.database.memory.MemoryDatabase;
+
+import com.google.inject.ImplementedBy;
+
 /**
  * Factory for {@link PostBuilder}s.
  *
  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
+@ImplementedBy(MemoryDatabase.class)
 public interface PostBuilderFactory {
 
        /**