9 lines
182 B
Python
Executable File
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())
|