chess-tutor / src /chess_tutor /engine /__init__.py
github-actions[bot]
deploy prod from 06dbd16a01ddcfe02b2d936c681e3e4eaa9b141f
8e756fd
Raw
History Blame Contribute Delete
268 Bytes
"""Engine package for optional move analysis."""
from chess_tutor.engine.advisor import (
EngineAdvice,
MoveAdvisor,
create_move_advisor,
uci_to_san,
)
__all__ = [
"EngineAdvice",
"MoveAdvisor",
"create_move_advisor",
"uci_to_san",
]