2023-01-11 13:04:19 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
@File : __init__.py.py
|
|
|
|
@Author : Shuaikang Zhou
|
|
|
|
@Time : 2023/1/5 0:10
|
|
|
|
@IDE : Pycharm
|
|
|
|
@Version : Python3.10
|
|
|
|
@comment : ···
|
|
|
|
"""
|
2023-12-01 22:37:45 +08:00
|
|
|
from .hard_link import HardLink
|
|
|
|
from .micro_msg import MicroMsg
|
2023-11-12 21:51:33 +08:00
|
|
|
# from . import data
|
|
|
|
# from . import output
|
2023-12-01 22:37:45 +08:00
|
|
|
from .misc import Misc
|
|
|
|
from .msg import Msg
|
2023-11-08 00:13:12 +08:00
|
|
|
|
2023-12-01 22:37:45 +08:00
|
|
|
misc_db = Misc()
|
|
|
|
msg_db = Msg()
|
|
|
|
micro_msg_db = MicroMsg()
|
|
|
|
hard_link_db = HardLink()
|
|
|
|
__all__ = ["data", 'output', 'misc_db', 'micro_msg_db', 'msg_db', 'hard_link_db']
|