from bottle import route, run

@route('/boj')
def hello():
    return "Hello World!"


run(host='docbox.flint.com', port=8083)

