8 lines
145 B
Python
8 lines
145 B
Python
"""支持通过 ``python -m cmbuyer_client`` 启动应用。"""
|
|
|
|
from .app import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|