mirror of
https://github.com/qurator-spk/eynollah.git
synced 2025-07-01 23:19:54 +02:00
11 lines
304 B
Python
11 lines
304 B
Python
from .processor import EynollahProcessor
|
|
from click import command
|
|
from ocrd.decorators import ocrd_cli_options, ocrd_cli_wrap_processor
|
|
|
|
@command()
|
|
@ocrd_cli_options
|
|
def main(*args, **kwargs):
|
|
return ocrd_cli_wrap_processor(EynollahProcessor, *args, **kwargs)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|