├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Package.swift ├── README.md └── Sources └── Dependency └── Dependency.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Dependency/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Dependency/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Dependency/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Dependency/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Dependency/Dependency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Dependency/HEAD/Sources/Dependency/Dependency.swift --------------------------------------------------------------------------------