feat: Add bottle webserver to run along with tests

This commit is contained in:
Cristian 2020-07-07 14:46:45 -05:00
parent 5b571aa166
commit bf417f50a4
4 changed files with 28 additions and 0 deletions
tests/mock_server

View file

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