P5-4836 deploy api to production (new hostname)

This commit is contained in:
Niklas Fondberg
2020-02-27 13:06:58 +01:00
committed by GitHub
parent d2c567a7cd
commit b08aa76acc
9 changed files with 677 additions and 20 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ mod = Blueprint("server", __name__)
@mod.route("/", methods=["GET"])
def status():
data = {"version": "0.0.1"}
data = {"version": "0.0.2"}
return jsonify(data)