import os | |
import bottle | |
os.chdir(os.path.dirname(os.path.abspath(__file__))) | |
@bottle.route('/') | |
def index(): | |
return b'Hello world' | |
application = bottle.default_app() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment