gitextract_1kroxokl/ ├── .devcontainer/ │ └── devcontainer.json ├── .dockerignore ├── .github/ │ └── workflows/ │ ├── python-package.yml │ ├── python-publish-test.yml │ └── python-publish.yml ├── .gitignore ├── CHANGELOG ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── TODO ├── dnschef/ │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── kitchen.py │ ├── logger.py │ ├── protocols.py │ └── utils.py ├── dnschef.toml ├── docker-compose.yml ├── pyproject.toml ├── requirements-api.txt ├── requirements-dev.txt ├── requirements.txt └── tests/ ├── __init__.py ├── conftest.py ├── dnschef-tests.toml ├── small-bin-test ├── test_dns_server.py ├── test_file_staging.py ├── test_http_api.py ├── test_util.py └── thicc-bin-test