9 lines
105 B
Python
9 lines
105 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
MixVideo 统一命令行接口
|
|
"""
|
|
|
|
from .cli import main
|
|
|
|
__all__ = ["main"]
|