15 lines
465 B
Python
15 lines
465 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2026 tmwgsicp
|
|
# Licensed under the GNU Affero General Public License v3.0
|
|
# See LICENSE file in the project root for full license text.
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
"""
|
|
路由模块初始化
|
|
"""
|
|
|
|
# 导出所有路由模块
|
|
from . import article, articles, search, admin, login, image, health, stats
|
|
|
|
__all__ = ['article', 'articles', 'search', 'admin', 'login', 'image', 'health', 'stats']
|