commit rest of old client/server fixes

This commit is contained in:
Xevion
2021-01-08 18:52:25 -06:00
parent b792d9cb9c
commit ab1c14adb5
7 changed files with 224 additions and 32 deletions

View File

@@ -0,0 +1,8 @@
from PyQt5.QtWidgets import QApplication
from client.gui import MainWindow
app = QApplication([])
app.setApplicationName("TCPChat Client")
m = MainWindow()
app.exec_()