ArchiveBox/tests/mock_server/server.py

8 lines
No EOL
125 B
Python

from bottle import route, run
@route('/')
def index():
return "Hello"
def start():
run(host='localhost', port=8080)