trustgraph/trustgraph-flow/trustgraph/config/service/__main__.py
cybermaggedon fa09dc319e
Feature/config service (#332)
Configuration service provides an API to change configuration. Complete configuration is pushed down a config queue so that users have a complete copy of config object.
2025-04-01 19:47:05 +01:00

7 lines
89 B
Python

#!/usr/bin/env python3
from . service import run
if __name__ == '__main__':
run()