mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 00:16:23 +02:00
5 lines
140 B
Python
5 lines
140 B
Python
|
|
class Running:
|
|
def __init__(self): self.running = True
|
|
def get(self): return self.running
|
|
def stop(self): self.running = False
|