X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Fcore%2FImageLoader.kt;h=52110156f88ade9d8e8218052089d9948b7849a0;hb=d8bf8d6a89ce08693868fa7fac5d18d6d31256ce;hp=6d7fb36e97f095725769e118daa3f2e0749eb534;hpb=5331998f4c37d54637737b79e5ef8844dc64d72b;p=Sone.git diff --git a/src/main/kotlin/net/pterodactylus/sone/core/ImageLoader.kt b/src/main/kotlin/net/pterodactylus/sone/core/ImageLoader.kt index 6d7fb36..5211015 100644 --- a/src/main/kotlin/net/pterodactylus/sone/core/ImageLoader.kt +++ b/src/main/kotlin/net/pterodactylus/sone/core/ImageLoader.kt @@ -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?