8 lines
169 B
Python
8 lines
169 B
Python
"""Documented command entry point for the production acceptance runner."""
|
|
|
|
from phase3_acceptance import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|