v4.0.0
This commit is contained in:
@@ -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()
|
||||
Reference in New Issue
Block a user