8 lines
165 B
Python
8 lines
165 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.dispatch import Signal
|
|
|
|
post_document_version_ocr = Signal(
|
|
providing_args=['instance'], use_caching=True
|
|
)
|