mdserver-web/web/admin/monitor/__init__.py

17 lines
747 B
Python
Raw Normal View History

2024-10-19 09:52:59 -04:00
# coding:utf-8
# ---------------------------------------------------------------------------------
# MW-Linux面板
# ---------------------------------------------------------------------------------
# copyright (c) 2018-∞(https://github.com/midoks/mdserver-web) All rights reserved.
# ---------------------------------------------------------------------------------
# Author: midoks <midoks@163.com>
# ---------------------------------------------------------------------------------
from flask import Blueprint, render_template
2024-10-27 15:13:10 -04:00
blueprint = Blueprint('monitor', __name__, url_prefix='/monitor', template_folder='../../templates/default')
2024-10-19 09:52:59 -04:00
@blueprint.route('/index', endpoint='index')
def index():
2024-10-27 15:13:10 -04:00
return render_template('monitor.html',)