go_api_func_ip_menu.py 285 B

123456789
  1. from .tool.func import *
  2. async def api_func_ip_menu(ip = "Test", option = ""):
  3. other_set = {}
  4. other_set["ip"] = ip
  5. other_set["my_ip"] = ip_check()
  6. other_set["option"] = option
  7. return flask.jsonify(await python_to_golang(sys._getframe().f_code.co_name, other_set))