trustgraph/trustgraph-flow/trustgraph/gateway/running.py
cybermaggedon 67d69b5285
Fixed a problem with the packages, api/__init__.py appeared in both (#196)
trustgraph-flow and trustgraph-base, moved the gateway stuff into a
different directory.
2024-12-06 13:05:56 +00:00

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