2022-12-11 19:57:13 +01:00
|
|
|
//
|
|
|
|
// APIServiceKey.swift
|
|
|
|
// Dependencies
|
|
|
|
//
|
|
|
|
// Created by Javier Cicchelli on 11/12/2022.
|
|
|
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import APIService
|
|
|
|
import DependencyInjection
|
|
|
|
|
2022-12-11 20:31:21 +01:00
|
|
|
public struct APIServiceKey: DependencyKey {
|
|
|
|
public static var currentValue = APIService()
|
2022-12-11 19:57:13 +01:00
|
|
|
}
|