10 lines
184 B
Python
10 lines
184 B
Python
"""Run the uvm command-line application with ``python -m uvm``."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from .cli import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|