| """Backfill catalogs for existing users. | |
| One-off script. For each user that already has registered DB connections or | |
| uploaded tabular files, run the structured pipeline to build their catalog. | |
| Usage: | |
| uv run python scripts/build_initial_catalogs.py [--user-id USER_ID] | |
| """ | |
| def main() -> None: | |
| raise NotImplementedError | |
| if __name__ == "__main__": | |
| main() | |