mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-15 14:52:17 +03:00
9 lines
174 B
Python
9 lines
174 B
Python
|
from multiprocessing import Process
|
||
|
|
||
|
|
||
|
class SetupTimer:
|
||
|
@staticmethod
|
||
|
def start(timer):
|
||
|
thread_timer = Process(target=timer.run)
|
||
|
thread_timer.start()
|