mirror of
https://github.com/mariadb-corporation/dev-example-places.git
synced 2026-01-06 11:06:48 +00:00
12 lines
214 B
Python
12 lines
214 B
Python
import flask
|
|
from locations import locations
|
|
|
|
app = flask.Flask(__name__)
|
|
app.config["DEBUG"] = True
|
|
app.register_blueprint(locations)
|
|
|
|
@app.route("/api/version")
|
|
def version():
|
|
return "1.0"
|
|
|
|
app.run(port=8080) |