15 lines
297 B
Swift
15 lines
297 B
Swift
//
|
|
// APIServiceKey.swift
|
|
// Dependencies
|
|
//
|
|
// Created by Javier Cicchelli on 11/12/2022.
|
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
|
//
|
|
|
|
import APIService
|
|
import DependencyInjection
|
|
|
|
public struct APIServiceKey: DependencyKey {
|
|
public static var currentValue = APIService()
|
|
}
|