18 lines
376 B
Swift
18 lines
376 B
Swift
//
|
|
// DependencyStore+Keys.swift
|
|
// Dependencies
|
|
//
|
|
// Created by Javier Cicchelli on 11/12/2022.
|
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
|
//
|
|
|
|
import APIService
|
|
import DependencyInjection
|
|
|
|
public extension DependencyStore {
|
|
var apiService: APIService {
|
|
get { Self[APIServiceKey.self] }
|
|
set { Self[APIServiceKey.self] = newValue }
|
|
}
|
|
}
|