mirror of
https://github.com/open-mmlab/mim.git
synced 2025-06-03 14:59:11 +08:00
* feat(mim): support 'python -m mim' usage * feat(mim): add test mim cli test * move mim cli test to build.yml
7 lines
159 B
Python
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()
|