1
0
Fork 0
mirror of synced 2024-06-27 18:40:52 +12:00
ArchiveBox/tests/mock_server/server.py

8 lines
125 B
Python

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