From 6e58fdff1ea3388ac1af35b904fcc59a06b00cf3 Mon Sep 17 00:00:00 2001 From: Laurent Date: Thu, 20 Jun 2024 10:07:08 +0200 Subject: [PATCH] Make storage URL method public --- LeStorage/Storable.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LeStorage/Storable.swift b/LeStorage/Storable.swift index dd2a9af..cf4c635 100644 --- a/LeStorage/Storable.swift +++ b/LeStorage/Storable.swift @@ -47,7 +47,7 @@ extension Storable { return path } - static func storageDirectoryPath() throws -> URL { + public static func storageDirectoryPath() throws -> URL { return try FileUtils.pathForDirectoryInDocuments(directory: Store.storageDirectory) }