1
0
Fork 0
mirror of synced 2024-09-29 16:51:22 +13:00
ArchiveBox/tests/mock_server/server.py

8 lines
125 B
Python
Raw Normal View History

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