mirror of
https://github.com/KeksPirates/SoftwareManager.git
synced 2026-08-04 09:59:41 +02:00
10 lines
142 B
Python
10 lines
142 B
Python
import threading
|
|
import os
|
|
|
|
shutdown_event = threading.Event()
|
|
|
|
def closehelper():
|
|
shutdown_event.set()
|
|
|
|
def force_exit():
|
|
os._exit(0) |