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