grimboite/editor.py

8 lines
88 B
Python

from bottle import Bottle, run
app = Bottle()
run(app, host='localhost', port=5000)