mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-10 17:13:35 +08:00
7 lines
134 B
Python
7 lines
134 B
Python
import sys
|
|
from .cli import Pysubs2CLI
|
|
|
|
if __name__ == "__main__":
|
|
cli = Pysubs2CLI()
|
|
rv = cli(sys.argv[1:])
|
|
sys.exit(rv)
|