aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/core/storage/BlobStorage.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/xyz/driver/core/storage/BlobStorage.scala')
-rw-r--r--src/main/scala/xyz/driver/core/storage/BlobStorage.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/scala/xyz/driver/core/storage/BlobStorage.scala b/src/main/scala/xyz/driver/core/storage/BlobStorage.scala
index b12230e..ee6c5d7 100644
--- a/src/main/scala/xyz/driver/core/storage/BlobStorage.scala
+++ b/src/main/scala/xyz/driver/core/storage/BlobStorage.scala
@@ -38,6 +38,11 @@ trait BlobStorage {
/** Delete a stored value. */
def delete(name: String): Future[String]
+ /**
+ * Path to specified resource. Checks that the resource exists and returns None if
+ * it is not found. Depending on the implementation, may throw.
+ */
+ def url(name: String): Future[Option[URL]]
}
trait SignedBlobStorage extends BlobStorage {