9 lines
179 B
Python
9 lines
179 B
Python
#!/usr/bin/env python3
|
|
"""Compatibility entry point for the stage-1 validation command."""
|
|
|
|
from rm75_ik.cli import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|