From d962fe18e6acbaf2b7f80f138434800bf11f3979 Mon Sep 17 00:00:00 2001 From: xaoyaoo Date: Mon, 25 Dec 2023 15:33:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 ++- pywxdump/{analyzer => utils}/utils.py | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename pywxdump/{analyzer => utils}/utils.py (100%) diff --git a/.gitignore b/.gitignore index 435ea6a..7dbde81 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,13 @@ -# 忽略logs目录 dist/ build/ .git/ __pycache__/ decrypted/ pywxdump.egg-info/ + # 忽略.idea目录 .idea/ + pysqlcipher3/ # 忽略secret.txt文件 secret.txt diff --git a/pywxdump/analyzer/utils.py b/pywxdump/utils/utils.py similarity index 100% rename from pywxdump/analyzer/utils.py rename to pywxdump/utils/utils.py