├── .gitignore ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── PerfectCURL │ ├── CURLRequest.swift │ ├── CURLRequestOptions.swift │ ├── CURLResponse.swift │ ├── CURLResponseInfos.swift │ ├── HTTPHeaders.swift │ ├── HTTPMethod.swift │ └── cURL.swift └── Tests ├── LinuxMain.swift └── PerfectCURLTests └── PerfectCURLTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerfectlySoft/Perfect-CURL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerfectlySoft/Perfect-CURL/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerfectlySoft/Perfect-CURL/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerfectlySoft/Perfect-CURL/HEAD/README.md -------------------------------------------------------------------------------- /Sources/PerfectCURL/CURLRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerfectlySoft/Perfect-CURL/HEAD/Sources/PerfectCURL/CURLRequest.swift -------------------------------------------------------------------------------- /Sources/PerfectCURL/CURLRequestOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerfectlySoft/Perfect-CURL/HEAD/Sources/PerfectCURL/CURLRequestOptions.swift -------------------------------------------------------------------------------- /Sources/PerfectCURL/CURLResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerfectlySoft/Perfect-CURL/HEAD/Sources/PerfectCURL/CURLResponse.swift -------------------------------------------------------------------------------- /Sources/PerfectCURL/CURLResponseInfos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerfectlySoft/Perfect-CURL/HEAD/Sources/PerfectCURL/CURLResponseInfos.swift -------------------------------------------------------------------------------- /Sources/PerfectCURL/HTTPHeaders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerfectlySoft/Perfect-CURL/HEAD/Sources/PerfectCURL/HTTPHeaders.swift -------------------------------------------------------------------------------- /Sources/PerfectCURL/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerfectlySoft/Perfect-CURL/HEAD/Sources/PerfectCURL/HTTPMethod.swift -------------------------------------------------------------------------------- /Sources/PerfectCURL/cURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerfectlySoft/Perfect-CURL/HEAD/Sources/PerfectCURL/cURL.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerfectlySoft/Perfect-CURL/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/PerfectCURLTests/PerfectCURLTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PerfectlySoft/Perfect-CURL/HEAD/Tests/PerfectCURLTests/PerfectCURLTests.swift --------------------------------------------------------------------------------