Files
mnote/wolai-backend/.venv312/Lib/site-packages/kombu/asynchronous/aws/sqs/ext.py
T

10 lines
131 B
Python
Raw Normal View History

2025-12-08 19:56:24 +08:00
"""Amazon SQS boto3 interface."""
from __future__ import annotations
try:
import boto3
except ImportError:
boto3 = None