2024-10-09 04:37:05 +00:00
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
from PyQt5.QtWidgets import QApplication
|
|
|
|
|
|
|
|
|
|
from modules.participant import Participant
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
app = QApplication(sys.argv)
|
|
|
|
|
window = Participant()
|
|
|
|
|
window.setWindowTitle("3Dots")
|
|
|
|
|
window.show()
|
|
|
|
|
sys.exit(app.exec_())
|