Files
cult-scraper/apps/cluster_map/cluster.py
2025-08-11 02:37:21 +01:00

13 lines
324 B
Python

"""
Discord Chat Embeddings Visualizer - Legacy Entry Point
This file serves as a compatibility layer for the original cluster.py.
The application has been refactored into modular components for better maintainability.
"""
# Import and run the main application
from main import main
if __name__ == "__main__":
main()