mim/mim/__main__.py
yancong 6b36c8e83c
[Feature] Support 'python -m mim' usage (#158)
* feat(mim): support 'python -m mim' usage

* feat(mim): add test mim cli test

* move mim cli test to build.yml
2022-09-03 10:13:42 +08:00

7 lines
159 B
Python

# Copyright (c) OpenMMLab. All rights reserved.
"""With this module, we can use `python -m mim`."""
from .cli import cli
if __name__ == '__main__':
cli()