Ahenk/opt/ahenk/base/timer/setup_timer.py

9 lines
148 B
Python
Raw Normal View History

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