From 0f2cdaca3196c0318f9cf2e0313d1138cff1c176 Mon Sep 17 00:00:00 2001 From: Laurent Date: Thu, 30 May 2024 18:09:22 +0200 Subject: [PATCH] makes Service init public --- LeStorage/Services.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LeStorage/Services.swift b/LeStorage/Services.swift index 2181b54..1e829c2 100644 --- a/LeStorage/Services.swift +++ b/LeStorage/Services.swift @@ -57,7 +57,7 @@ public class Services { let keychainStore: KeychainStore - init(url: String) { + public init(url: String) { self.baseURL = url self.keychainStore = KeychainStore(serverId: url) }