mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-01 09:29:38 +02:00
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.
7 lines
89 B
Python
7 lines
89 B
Python
#!/usr/bin/env python3
|
|
|
|
from . service import run
|
|
|
|
if __name__ == '__main__':
|
|
run()
|
|
|