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

18 lines
438 B

7 months ago
from .dashboard import blueprint as DashboardModule
7 months ago
from .site import blueprint as SiteModule
from .task import blueprint as TaskModule
7 months ago
from .config import blueprint as ConfigModule
7 months ago
from .logs import blueprint as LogsModule
from .files import blueprint as FilesModule
7 months ago
def get_submodules():
return [
DashboardModule,
7 months ago
SiteModule,
TaskModule,
7 months ago
LogsModule,
FilesModule,
7 months ago
ConfigModule
7 months ago
]