├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── LICENSE ├── Package.swift ├── README.md └── Source └── DataLoader.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Nuke-Alamofire-Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Nuke-Alamofire-Plugin/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Nuke-Alamofire-Plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Nuke-Alamofire-Plugin/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Nuke-Alamofire-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /Source/DataLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Nuke-Alamofire-Plugin/HEAD/Source/DataLoader.swift --------------------------------------------------------------------------------