Files
controller-wisetopdataserver/python/biopro/router.py
T
2021-12-20 14:52:55 +08:00

19 lines
363 B
Python

"""rest router map for controller server.
main
----
dump the router map, which can rewrite this file without broken the application.
"""
from biopro.controller import ControlAPI
ROUTER_RULES = ControlAPI._bps_router_rules_
if __name__ == '__main__':
print("ROUTER_RULES = (")
for r in ROUTER_RULES:
print(tuple(r), end=',\n')
print(")")