Skip to content
This repository has been archived by the owner on Nov 19, 2023. It is now read-only.

Commit

Permalink
fixed optional string
Browse files Browse the repository at this point in the history
  • Loading branch information
tib committed Dec 1, 2020
1 parent 949a3d4 commit 322fa7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/LiquidKit/FileStorage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public protocol FileStorage {
func createDirectory(key: String) -> EventLoopFuture<Void>

// list the contents of a given object for a key
func list(key: String) -> EventLoopFuture<[String]>
func list(key: String?) -> EventLoopFuture<[String]>

// deletes the data under the given key
func delete(key: String) -> EventLoopFuture<Void>
Expand Down

0 comments on commit 322fa7a

Please sign in to comment.