mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-06 19:45:24 +00:00

Splits the monolithic GUI logic into modular components, improving maintainability. Introduces `RunTab`, `ResultsTable`, and utility modules for better separation of concerns and reusability. Adjusts main entry point and refactors core functionalities to align with the new structure.
15 lines
246 B
Python
15 lines
246 B
Python
import sys
|
|
from PyQt5.QtWidgets import QApplication
|
|
from gui.main_window import StreamingGUI
|
|
|
|
|
|
def main():
|
|
app = QApplication(sys.argv)
|
|
gui = StreamingGUI()
|
|
gui.show()
|
|
sys.exit(app.exec_())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|