├── .gitattributes ├── .github └── workflows │ ├── publish.yml │ ├── test-3_10.yml │ ├── test-3_11.yml │ ├── test-3_12.yml │ ├── test-3_8.yml │ └── test-3_9.yml ├── .gitignore ├── LICENSE ├── README.md ├── microrabbit ├── __init__.py ├── abc.py ├── app │ ├── __init__.py │ ├── rabbit_client.py │ └── utils.py ├── logger.py └── types │ ├── __init__.py │ ├── enums.py │ └── options.py ├── pyproject.toml ├── pytest.ini ├── requirements.txt └── tests ├── conftest.py ├── test_queue.py └── test_type.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test-3_10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/.github/workflows/test-3_10.yml -------------------------------------------------------------------------------- /.github/workflows/test-3_11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/.github/workflows/test-3_11.yml -------------------------------------------------------------------------------- /.github/workflows/test-3_12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/.github/workflows/test-3_12.yml -------------------------------------------------------------------------------- /.github/workflows/test-3_8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/.github/workflows/test-3_8.yml -------------------------------------------------------------------------------- /.github/workflows/test-3_9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/.github/workflows/test-3_9.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/README.md -------------------------------------------------------------------------------- /microrabbit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/microrabbit/__init__.py -------------------------------------------------------------------------------- /microrabbit/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/microrabbit/abc.py -------------------------------------------------------------------------------- /microrabbit/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/microrabbit/app/__init__.py -------------------------------------------------------------------------------- /microrabbit/app/rabbit_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/microrabbit/app/rabbit_client.py -------------------------------------------------------------------------------- /microrabbit/app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/microrabbit/app/utils.py -------------------------------------------------------------------------------- /microrabbit/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/microrabbit/logger.py -------------------------------------------------------------------------------- /microrabbit/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/microrabbit/types/__init__.py -------------------------------------------------------------------------------- /microrabbit/types/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/microrabbit/types/enums.py -------------------------------------------------------------------------------- /microrabbit/types/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/microrabbit/types/options.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/tests/test_queue.py -------------------------------------------------------------------------------- /tests/test_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonnoBelloSnello/microrabbit/HEAD/tests/test_type.py --------------------------------------------------------------------------------