This commit is contained in:
its.kstyagi@gmail.com
2026-09-04 20:56:18 +00:00
commit 1022f24c34
43 changed files with 6160 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
"""Run the uvm command-line application with ``python -m uvm``."""
from __future__ import annotations
from .cli import main
if __name__ == "__main__":
raise SystemExit(main())