├── .gitignore ├── LICENSE.txt ├── Package.swift ├── README.md └── module.modulemap /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-nghttp2-support/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-nghttp2-support/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-nghttp2-support/HEAD/README.md -------------------------------------------------------------------------------- /module.modulemap: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------