generated from coulomb/repo-seed
8 lines
194 B
Python
8 lines
194 B
Python
#!/usr/bin/env python3
|
|
"""CLI wrapper for the repo-native automation status report."""
|
|
|
|
from activity_core.automation_status import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main()) |