microservice-chassis-grupo2 0.1.4__tar.gz → 0.1.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of microservice-chassis-grupo2 might be problematic. Click here for more details.
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/PKG-INFO +1 -1
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/README.md +2 -2
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/microservice_chassis_grupo2/core/rabbitmq_core.py +2 -0
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/microservice_chassis_grupo2.egg-info/PKG-INFO +1 -1
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/setup.py +1 -1
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/microservice_chassis_grupo2/__init__.py +0 -0
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/microservice_chassis_grupo2/core/__init__.py +0 -0
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/microservice_chassis_grupo2/core/config.py +0 -0
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/microservice_chassis_grupo2/core/dependencies.py +0 -0
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/microservice_chassis_grupo2/core/router_utils.py +0 -0
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/microservice_chassis_grupo2/core/security.py +0 -0
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/microservice_chassis_grupo2/sql/__init__.py +0 -0
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/microservice_chassis_grupo2/sql/database.py +0 -0
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/microservice_chassis_grupo2/sql/models.py +0 -0
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/microservice_chassis_grupo2.egg-info/SOURCES.txt +0 -0
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/microservice_chassis_grupo2.egg-info/dependency_links.txt +0 -0
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/microservice_chassis_grupo2.egg-info/top_level.txt +0 -0
- {microservice_chassis_grupo2-0.1.4 → microservice_chassis_grupo2-0.1.5}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# 🧩 Microservice Chassis Grupo 2
|
|
2
2
|
|
|
3
|
-
**Repository link:**
|
|
3
|
+
**Repository link:** https://github.com/Grupo-MACC/Chassis
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -41,4 +41,4 @@ This chassis allows the `payment` microservice (and potentially others in the fu
|
|
|
41
41
|
- Common helper utilities and error management.
|
|
42
42
|
- Unified base ORM models.
|
|
43
43
|
|
|
44
|
-
It provides a robust foundation for building scalable and maintainable microservices within the system.
|
|
44
|
+
It provides a robust foundation for building scalable and maintainable microservices within the system.
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
from aio_pika import connect_robust, ExchangeType
|
|
2
2
|
from microservice_chassis_grupo2.core.config import settings
|
|
3
3
|
|
|
4
|
+
PUBLIC_KEY_PATH = "/home/pyuser/code/auth_public.pem"
|
|
5
|
+
|
|
4
6
|
async def get_channel():
|
|
5
7
|
connection = await connect_robust(settings.RABBITMQ_HOST)
|
|
6
8
|
channel = await connection.channel()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|