__init__.py 289 B

123456789
  1. def imap_producer(**kwargs):
  2. def imap_producer_factory():
  3. # the import needs to be delayed until call to enable
  4. # using the wrapper in the django settings
  5. from .imap import imap_producer
  6. return imap_producer(**kwargs)
  7. return imap_producer_factory