from flask_mail import Mail
from flask_cors import CORS


mail = Mail()

# Enable CORS for all routes
cors = CORS(
    origins="*",
    supports_credentials=True,
    allow_headers=["Content-Type", "Authorization"]
)
