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