mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-09-20 19:02:42 +03:00
9 lines
212 B
Python
9 lines
212 B
Python
import threading
|
|
|
|
|
|
def create_task(method, *args, **kwargs):
|
|
thread = threading.Thread(target=method, daemon=True,
|
|
args=args, kwargs=kwargs)
|
|
thread.start()
|
|
return thread
|