21 lines
415 B
Python
21 lines
415 B
Python
|
|
"""Entry: `python -m voice_confirmation_client` or `voice-confirmation-client`."""
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
import sys
|
||
|
|
|
||
|
|
|
||
|
|
def main() -> None:
|
||
|
|
from PySide6.QtWidgets import QApplication
|
||
|
|
|
||
|
|
from voice_confirmation_client.gui.main_window import MainWindow
|
||
|
|
|
||
|
|
app = QApplication(sys.argv)
|
||
|
|
win = MainWindow()
|
||
|
|
win.show()
|
||
|
|
raise SystemExit(app.exec())
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
main()
|