Remote-Desktop-App/main.py

16 lines
368 B
Python
Raw Permalink Normal View History

2024-07-27 14:02:06 +00:00
import sys
import asyncio
from structures import App, InputHandling, MouseKeyboardHandler, GUI
if __name__ == "__main__":
# debug_mode = sys.argv[1] # client | server
app = App()
app.debug = sys.flags.debug # Show connection log to terminal
gui = GUI(app)
app.gui = gui
try:
gui.start()
except KeyboardInterrupt:
exit()