mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-15 14:52:17 +03:00
8 lines
148 B
Python
8 lines
148 B
Python
from multiprocessing import Process
|
|
|
|
|
|
class SetupTimer:
|
|
@staticmethod
|
|
def start(timer):
|
|
timer.setDaemon(True)
|
|
timer.start()
|