Ahenk/opt/ahenk/base/timer/setup_timer.py
2016-07-25 12:19:53 +03:00

8 lines
148 B
Python

from multiprocessing import Process
class SetupTimer:
@staticmethod
def start(timer):
timer.setDaemon(True)
timer.start()