Files
2026-09-04 20:56:18 +00:00

9 lines
182 B
Python
Executable File

#!/usr/bin/env python3
"""Compatibility launcher for the modular uvm command-line application."""
from uvm.cli import main
if __name__ == "__main__":
raise SystemExit(main())