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

19 lines
724 B
Python
Raw Normal View History

2024-10-19 09:27:24 -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
blueprint = Blueprint('task', __name__, url_prefix='/task', template_folder='../../templates/default')
2024-10-26 14:23:12 -04:00
2024-10-19 09:27:24 -04:00
@blueprint.route('/count', endpoint='task_count')
def task_count():
return "0"