mirror of
https://github.com/gryf/ebook-converter.git
synced 2026-01-01 07:22:26 +01:00
13 lines
162 B
Python
13 lines
162 B
Python
#!/usr/bin/env python
|
|
import sys
|
|
|
|
from ebook_converter.ebooks.conversion.cli import main
|
|
|
|
|
|
def run():
|
|
sys.exit(main())
|
|
|
|
|
|
if __name__ == '__main__':
|
|
run()
|