summaryrefslogtreecommitdiffstats
path: root/shared_thread_data.py
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2025-05-29 15:03:06 -0700
committeryum <yum.food.vr@gmail.com>2025-05-29 15:03:06 -0700
commit0ebc79354ace812731a5c9a0a670cecd1ea941d7 (patch)
tree10a83d8761f365a320919d219b4a6f653db31c4d /shared_thread_data.py
parentf8e95c0b85288a10f435e0edabf43defa0c303ac (diff)
Move core app logic into folder
Diffstat (limited to 'shared_thread_data.py')
-rw-r--r--shared_thread_data.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/shared_thread_data.py b/shared_thread_data.py
deleted file mode 100644
index ba0a419..0000000
--- a/shared_thread_data.py
+++ /dev/null
@@ -1,9 +0,0 @@
-import threading
-
-class SharedThreadData:
- def __init__(self, cfg):
- self.word = ""
- self.word_lock = threading.Lock()
- self.exit_event = threading.Event()
- self.cfg = cfg
-