Spaces:
Runtime error
Runtime error
| # main.py | |
| from system import SpacedRepetitionSystem | |
| from ui import StreamlitUI | |
| def main(): | |
| # Initialize the system | |
| system = SpacedRepetitionSystem() | |
| # Initialize the UI | |
| ui = StreamlitUI(system) | |
| # Run the app | |
| ui.run() | |
| if __name__ == "__main__": | |
| main() |