mirror of
https://github.com/ivanch/tcc.git
synced 2025-07-05 17:19:15 +00:00
8 lines
185 B
Python
8 lines
185 B
Python
from flask import jsonify, Blueprint
|
|
|
|
status_blueprint = Blueprint('status_blueprint', __name__)
|
|
|
|
@status_blueprint.route('/status/ok', methods=['GET'])
|
|
def return_ok():
|
|
return 200
|