├── .gitattributes ├── .github ├── dependabot.yml ├── release.yml └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── config.nims └── examples.nim ├── src ├── yahttp.nim └── yahttp │ ├── exceptions.nim │ └── internal │ └── utils.nim ├── tests ├── int │ ├── config.nims │ ├── test_data │ │ ├── test_file_1.txt │ │ ├── test_file_2.txt │ │ ├── test_file_3.txt │ │ └── test_file_4.txt │ └── test_yahttp.nim └── unit │ ├── config.nims │ └── test_yahttp.nim └── yahttp.nimble /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishankov/yahttp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishankov/yahttp/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishankov/yahttp/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishankov/yahttp/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishankov/yahttp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishankov/yahttp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishankov/yahttp/HEAD/README.md -------------------------------------------------------------------------------- /examples/config.nims: -------------------------------------------------------------------------------- 1 | switch("path", "$projectDir/../src") 2 | -------------------------------------------------------------------------------- /examples/examples.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishankov/yahttp/HEAD/examples/examples.nim -------------------------------------------------------------------------------- /src/yahttp.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishankov/yahttp/HEAD/src/yahttp.nim -------------------------------------------------------------------------------- /src/yahttp/exceptions.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishankov/yahttp/HEAD/src/yahttp/exceptions.nim -------------------------------------------------------------------------------- /src/yahttp/internal/utils.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishankov/yahttp/HEAD/src/yahttp/internal/utils.nim -------------------------------------------------------------------------------- /tests/int/config.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishankov/yahttp/HEAD/tests/int/config.nims -------------------------------------------------------------------------------- /tests/int/test_data/test_file_1.txt: -------------------------------------------------------------------------------- 1 | test content 2 | -------------------------------------------------------------------------------- /tests/int/test_data/test_file_2.txt: -------------------------------------------------------------------------------- 1 | test content 2 2 | -------------------------------------------------------------------------------- /tests/int/test_data/test_file_3.txt: -------------------------------------------------------------------------------- 1 | test content 3 2 | -------------------------------------------------------------------------------- /tests/int/test_data/test_file_4.txt: -------------------------------------------------------------------------------- 1 | test content 4 2 | -------------------------------------------------------------------------------- /tests/int/test_yahttp.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishankov/yahttp/HEAD/tests/int/test_yahttp.nim -------------------------------------------------------------------------------- /tests/unit/config.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishankov/yahttp/HEAD/tests/unit/config.nims -------------------------------------------------------------------------------- /tests/unit/test_yahttp.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishankov/yahttp/HEAD/tests/unit/test_yahttp.nim -------------------------------------------------------------------------------- /yahttp.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishankov/yahttp/HEAD/yahttp.nimble --------------------------------------------------------------------------------