summaryrefslogtreecommitdiffstats
path: root/nfsw/io.py
blob: abf607099b5f49ce6617ec54df2d0943dc655d23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
from nfsw.auth import login_required

from flask import (
    Blueprint, render_template
)

bp = Blueprint('io', __name__)

@bp.route('/io', endpoint='io')
@login_required
def console():
    return render_template('io.html')