Spaces:
Sleeping
Sleeping
| from src.ui import UserInterface | |
| # The Main Function | |
| def main() -> None: | |
| # Initialising the UI | |
| interface = UserInterface() | |
| # Launching the Demo | |
| interface.main_page() | |
| # Driver Code | |
| if __name__ == "__main__": | |
| main() |