from extensions import db
from flask import Blueprint, current_app

cas_bp = Blueprint('cas', __name__)

@cas_bp.route('/login')
def cas_login():
    with current_app.app_context():
        db.session.execute(text("SELECT 1"))
    return "OK"
