mirror of
https://github.com/Xevion/tcp-chat.git
synced 2025-12-06 07:16:33 -06:00
9 lines
170 B
Python
9 lines
170 B
Python
from PyQt5.QtWidgets import QApplication
|
|
from client.gui import MainWindow
|
|
|
|
app = QApplication([])
|
|
app.setApplicationName("TCPChat Client")
|
|
m = MainWindow()
|
|
|
|
app.exec_()
|