From d70544bfc5d25500a960e638578967f61cb0c712 Mon Sep 17 00:00:00 2001 From: Nick Cipollo Date: Wed, 4 Dec 2024 14:45:35 -0500 Subject: [PATCH] Fixes #25 Make appContainer public --- Sources/WhoopDIKit/WhoopDI.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/WhoopDIKit/WhoopDI.swift b/Sources/WhoopDIKit/WhoopDI.swift index e859e9f..2fdc526 100644 --- a/Sources/WhoopDIKit/WhoopDI.swift +++ b/Sources/WhoopDIKit/WhoopDI.swift @@ -1,6 +1,6 @@ import Foundation public final class WhoopDI: DependencyRegister { - nonisolated(unsafe) private static var appContainer = Container() + nonisolated(unsafe) public private(set) static var appContainer = Container() /// Setup WhoopDI with the supplied options. /// This should only be called once when your application launches (and before WhoopDI is used).