Files
contabilidad/worker/main.py

13 lines
231 B
Python
Raw Normal View History

2021-11-01 11:00:59 -03:00
from threading import Thread
import httpx
class Worker(Thread):
def __init__(self, settings):
self.settings = settings
def run():
while True:
if self.stop_event.isSet():
break