9 lines
143 B
Python
9 lines
143 B
Python
|
|
# MIT License
|
||
|
|
# Copyright (c) 2024
|
||
|
|
"""允许 python -m autodemo 运行 CLI。"""
|
||
|
|
|
||
|
|
from .cli import main
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
main()
|