Files
ezzthread/ezzthread.py
2022-04-15 14:07:06 +03:00

11 lines
232 B
Python

import threading
def threaded(func):
"""
Decorator to start a function in a new thread
"""
def thr(*args, **kwargs):
threading.Thread(target=func, args=(*args,), kwargs={**kwargs, }).start()
return thr