Verified with the coordinated workspace changes by devkit full run 2026-09-08T225814-186389-0000-3e3ed7cd (all seven phases passed). This shared UI pass does not mark the individual module reviews complete.
7 lines
192 B
Python
Executable File
7 lines
192 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Command-line entry point; use the repository-root ./devkit launcher."""
|
|
from govoplan_devkit.cli import main
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|