Spaces:
Sleeping
Sleeping
File size: 568 Bytes
448b42a 5e84ffc 448b42a 5e84ffc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
"""Presentation layer for piece practice.
This package contains modules for handling the user interface
and text management for piece practice applications.
"""
from improvisation_lab.presentation.piece_practice.console_piece_view import \
ConsolePiecePracticeView
from improvisation_lab.presentation.piece_practice.piece_view_text_manager import \
PieceViewTextManager
from improvisation_lab.presentation.piece_practice.web_piece_view import \
WebPiecePracticeView
__all__ = ["WebPiecePracticeView", "PieceViewTextManager", "ConsolePiecePracticeView"]
|