Simple Linux Panel
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.
mdserver-web/web/admin/submodules.py

40 lines
1.3 KiB

7 months ago
# coding:utf-8
# ---------------------------------------------------------------------------------
# MW-Linux面板
# ---------------------------------------------------------------------------------
# copyright (c) 2018-∞(https://github.com/midoks/mdserver-web) All rights reserved.
# ---------------------------------------------------------------------------------
# Author: midoks <midoks@163.com>
# ---------------------------------------------------------------------------------
7 months ago
from .dashboard import blueprint as DashboardModule
7 months ago
from .site import blueprint as SiteModule
from .task import blueprint as TaskModule
6 months ago
from .setting import blueprint as SettingModule
7 months ago
from .logs import blueprint as LogsModule
from .files import blueprint as FilesModule
7 months ago
from .soft import blueprint as SoftModule
from .plugins import blueprint as PluginsModule
from .crontab import blueprint as CrontabModule
from .firewall import blueprint as FirewallModule
6 months ago
from .monitor import blueprint as MonitorModule
7 months ago
from .system import blueprint as SystemModule
7 months ago
def get_submodules():
return [
DashboardModule,
7 months ago
SiteModule,
TaskModule,
7 months ago
LogsModule,
FilesModule,
7 months ago
SoftModule,
PluginsModule,
CrontabModule,
FirewallModule,
6 months ago
MonitorModule,
7 months ago
SystemModule,
6 months ago
SettingModule,
7 months ago
]