├── .gitignore ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── iDownload │ ├── KRWHandler.swift │ └── iDownload.swift └── Tests └── iDownloadTests └── iDownloadTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/iDownload/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/iDownload/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/iDownload/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/iDownload/HEAD/README.md -------------------------------------------------------------------------------- /Sources/iDownload/KRWHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/iDownload/HEAD/Sources/iDownload/KRWHandler.swift -------------------------------------------------------------------------------- /Sources/iDownload/iDownload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/iDownload/HEAD/Sources/iDownload/iDownload.swift -------------------------------------------------------------------------------- /Tests/iDownloadTests/iDownloadTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinauten/iDownload/HEAD/Tests/iDownloadTests/iDownloadTests.swift --------------------------------------------------------------------------------