Spaces:
Sleeping
Sleeping
| """ | |
| Chess game logic and analysis module. | |
| Provides complete chess functionality for the Metropolis Chess Club. | |
| """ | |
| from chess_engine.game import ChessGame | |
| from chess_engine.analysis import PositionAnalysis | |
| from chess_engine.ai import choose_move | |
| __all__ = ["ChessGame", "PositionAnalysis", "choose_move"] | |