Changed the accessor of the APIServiceKey dependency key to public.

This commit is contained in:
Javier Cicchelli 2022-12-11 20:31:21 +01:00
parent 620f9faf36
commit 71021f22ab

View File

@ -9,6 +9,6 @@
import APIService import APIService
import DependencyInjection import DependencyInjection
struct APIServiceKey: DependencyKey { public struct APIServiceKey: DependencyKey {
static var currentValue = APIService() public static var currentValue = APIService()
} }