16 lines
297 B
Python
16 lines
297 B
Python
from flask import Blueprint, jsonify, url_for
|
|
|
|
mod = Blueprint("server", __name__)
|
|
|
|
|
|
@mod.route("/", methods=["GET"])
|
|
def status():
|
|
data = {"version": "0.0.2"}
|
|
return jsonify(data)
|
|
|
|
|
|
@mod.route("/health", methods=["GET"])
|
|
def health():
|
|
data = {"status": "ok"}
|
|
return jsonify(data)
|