7 lines
190 B
Python
7 lines
190 B
Python
# expose the upload helper at package level to avoid
|
|
# circular imports between media.routes and utility.routes
|
|
|
|
from .routes import _process_upload_file
|
|
|
|
__all__ = ['_process_upload_file']
|