This commit is contained in:
Muhamed
2025-02-21 19:02:34 +02:00
parent 01e4d7daae
commit ec334c6213
4 changed files with 2073 additions and 1684 deletions
+12
View File
@@ -0,0 +1,12 @@
import sys
from PySide6.QtWidgets import QApplication
from ytsage_gui import YTSageApp # Import the main application class
def main():
app = QApplication(sys.argv)
window = YTSageApp() # Instantiate the main application class
window.show()
sys.exit(app.exec())
if __name__ == '__main__':
main()