mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-10 06:48:19 +02:00
8 lines
173 B
Python
8 lines
173 B
Python
transport_registry = {}
|
|
|
|
|
|
def register_transport(transport_type):
|
|
def decorator(f):
|
|
transport_registry[transport_type] = f
|
|
return f
|
|
return decorator
|