github.com/emc-advanced-dev/unik@v0.0.0-20190717152701-a58d3e8e33b7/docs/examples/example-python3-httpd/server.py (about)

     1  from bottle import *
     2  
     3  @get('/ping_test')
     4  def ping_test():
     5      return {"message": "pong"}
     6  
     7  run(host='localhost', port=8080)