Skip to content

Commit

Permalink
Fix file name and remove comments:
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsloan committed Nov 6, 2023
1 parent ef593f8 commit 5c66455
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ trait StorageInterface[SM <: FileMetadata] extends ResultProcessors {

def pathExists(bucket: String, path: String): Either[FileLoadError, Boolean]

//@evolve
def list(
bucket: String,
prefix: Option[String],
Expand All @@ -43,7 +42,6 @@ trait StorageInterface[SM <: FileMetadata] extends ResultProcessors {
prefix: Option[String],
): Either[FileListError, Option[ListOfMetadataResponse[SM]]]

//@evolve
def listKeysRecursive(
bucket: String,
prefix: Option[String],
Expand All @@ -59,7 +57,6 @@ trait StorageInterface[SM <: FileMetadata] extends ResultProcessors {

def getBlobAsString(bucket: String, path: String): Either[FileLoadError, String]

//@maybe evolve
def getMetadata(bucket: String, path: String): Either[FileLoadError, ObjectMetadata]

def writeStringToFile(bucket: String, path: String, data: UploadableString): Either[UploadError, Unit]
Expand Down

0 comments on commit 5c66455

Please sign in to comment.