+ Dependencies folder

This commit is contained in:
David Bureš 2025-12-09 11:32:42 +01:00
parent 75a4fff366
commit 79b6ddaf55
No known key found for this signature in database
2 changed files with 19 additions and 4 deletions

4
.gitignore vendored
View File

@ -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.

View File

@ -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<AppConstants>
{
Factory(self)
{
AppConstants()
}
}
}