mirror of
https://github.com/relativemodder/aegnux.git
synced 2025-12-10 13:39:43 +05:00
13 lines
293 B
Python
13 lines
293 B
Python
from src.processthread import ProcessThread
|
|
|
|
class KillAEThread(ProcessThread):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def run(self):
|
|
self.run_command(
|
|
['wineserver', '-k'],
|
|
in_prefix=True
|
|
)
|
|
|
|
self.finished_signal.emit(True) |