31 lines
687 B
Python
31 lines
687 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 .auth_manager import auth_manager
|
|
from .helpers import (
|
|
parse_article_url,
|
|
extract_article_info,
|
|
is_article_deleted,
|
|
is_need_verification,
|
|
is_login_required,
|
|
time_str_to_microseconds,
|
|
)
|
|
|
|
__all__ = [
|
|
'auth_manager',
|
|
'parse_article_url',
|
|
'extract_article_info',
|
|
'is_article_deleted',
|
|
'is_need_verification',
|
|
'is_login_required',
|
|
'time_str_to_microseconds',
|
|
]
|
|
|