15 lines
283 B
Swift
15 lines
283 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
|
||
|
|
||
|
struct APIServiceKey: DependencyKey {
|
||
|
static var currentValue = APIService()
|
||
|
}
|