mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-07 23:37:58 +08:00
8 lines
134 B
Python
8 lines
134 B
Python
|
import sys
|
||
|
from .cli import Pysubs2CLI
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
cli = Pysubs2CLI()
|
||
|
rv = cli(sys.argv[1:])
|
||
|
sys.exit(rv)
|