Show linked images under posts and replies
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / core / ImageLoader.kt
index 6d7fb36..5211015 100644 (file)
@@ -1,8 +1,11 @@
 package net.pterodactylus.sone.core
 
+import com.google.inject.ImplementedBy
+
 /**
  * Component that loads images and supplies information about them.
  */
+@ImplementedBy(DefaultImageLoader::class)
 interface ImageLoader {
 
        fun toLoadedImage(link: String): LoadedImage?