Files
stiftung-management-system/app/.venv/Lib/site-packages/kombu/asynchronous/aws/sqs/ext.py
2025-09-06 18:31:54 +02:00

10 lines
131 B
Python

"""Amazon SQS boto3 interface."""
from __future__ import annotations
try:
import boto3
except ImportError:
boto3 = None