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