KasperskyLab-TinyCheck/server/frontend/app/blueprints/update.py
2021-02-17 20:16:39 +01:00

20 lines
472 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from flask import jsonify, Blueprint
from app.classes.update import Update
update_bp = Blueprint("update", __name__)
@update_bp.route("/check", methods=["GET"])
def check():
""" Check the presence of new version """
return jsonify(Update().check_version())
@update_bp.route("/process", methods=["GET"])
def process():
""" Check the presence of new version """
return jsonify(Update().update_instance())