mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
655 B
17 lines
655 B
7 months ago
|
# coding:utf-8
|
||
7 months ago
|
|
||
|
# ---------------------------------------------------------------------------------
|
||
|
# MW-Linux面板
|
||
|
# ---------------------------------------------------------------------------------
|
||
|
# copyright (c) 2018-∞(https://github.com/midoks/mdserver-web) All rights reserved.
|
||
|
# ---------------------------------------------------------------------------------
|
||
|
# Author: midoks <midoks@163.com>
|
||
|
# ---------------------------------------------------------------------------------
|
||
|
|
||
|
|
||
7 months ago
|
from flask import Blueprint, render_template
|
||
7 months ago
|
|
||
7 months ago
|
blueprint = Blueprint('dashboard', __name__, url_prefix='/')
|
||
|
@blueprint.route('/')
|
||
|
def index():
|
||
|
return "dashboard"
|