19 lines
363 B
Python
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(")")
|