From 79b6ddaf554a04cf895e95ba6c6f77dabc72ee5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Bures=CC=8C?= Date: Tue, 9 Dec 2025 11:32:42 +0100 Subject: [PATCH] + Dependencies folder --- .gitignore | 4 ---- .../App Constants Dependency.swift | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 4 deletions(-) create mode 100644 Modules/Shared/Dependencies/App Constants Dependency.swift diff --git a/.gitignore b/.gitignore index db865e8c..0f30b9eb 100644 --- a/.gitignore +++ b/.gitignore @@ -66,10 +66,6 @@ playground.xcworkspace Carthage/Build/ -# Accio dependency management -Dependencies/ -.accio/ - # fastlane # # It is recommended to not store the screenshots in the git repo. diff --git a/Modules/Shared/Dependencies/App Constants Dependency.swift b/Modules/Shared/Dependencies/App Constants Dependency.swift new file mode 100644 index 00000000..c0b9d79c --- /dev/null +++ b/Modules/Shared/Dependencies/App Constants Dependency.swift @@ -0,0 +1,19 @@ +// +// App Constants Dependency.swift +// Cork +// +// Created by David Bureš - P on 12.09.2025. +// + +import FactoryKit + +public extension Container +{ + var appConstants: Factory + { + Factory(self) + { + AppConstants() + } + } +}