mirror of
https://github.com/LC044/WeChatMsg
synced 2025-04-19 02:08:05 +08:00
20 lines
400 B
Python
20 lines
400 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
"""
|
||
|
@Time : 2024/12/5 22:46
|
||
|
@Author : SiYuan
|
||
|
@Email : 863909694@qq.com
|
||
|
@File : MemoTrace-__init__.py.py
|
||
|
@Description :
|
||
|
"""
|
||
|
|
||
|
from .message import MessageDB
|
||
|
from .contact import ContactDB
|
||
|
from .session import SessionDB
|
||
|
from .head_image import HeadImageDB
|
||
|
from .hardlink import HardLinkDB
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
pass
|