app.decorators ============== .. py:module:: app.decorators .. autoapi-nested-parse:: Custom decorators for the Mail List Shield application. This module provides utility decorators used throughout the application. Functions --------- .. autoapisummary:: app.decorators.asyncr Module Contents --------------- .. py:function:: asyncr(f) Decorator to run a function asynchronously in a separate thread. This decorator is primarily used for sending emails without blocking the main request thread. :param f: The function to be decorated. :returns: A wrapper function that runs the original function in a separate thread. :rtype: function