From e3b889bbe8378696dc07475989953608beda9c51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=89=8B=E7=93=9C=E4=B8=80=E5=8D=81=E9=9B=AA?= Date: Wed, 22 May 2024 21:44:12 +0800 Subject: [PATCH] fix: test --- test/api/msg/SendPicMsg.py | 4 ++++ test/boot.py | 4 ++-- test/framwork/__init__.py | 0 test/framwork/msg/SendMsg.py | 1 + 4 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 test/api/msg/SendPicMsg.py create mode 100644 test/framwork/__init__.py create mode 100644 test/framwork/msg/SendMsg.py diff --git a/test/api/msg/SendPicMsg.py b/test/api/msg/SendPicMsg.py new file mode 100644 index 00000000..2a893b74 --- /dev/null +++ b/test/api/msg/SendPicMsg.py @@ -0,0 +1,4 @@ +def send_pic_local_msg(user, file): + pass +def send_pic_http_msg(user, pic_url): + pass \ No newline at end of file diff --git a/test/boot.py b/test/boot.py index c17aa7c1..307dceec 100644 --- a/test/boot.py +++ b/test/boot.py @@ -1,5 +1,5 @@ -import sys -import os +import requests +import pyyaml def __main__(): print("TEST") diff --git a/test/framwork/__init__.py b/test/framwork/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/test/framwork/msg/SendMsg.py b/test/framwork/msg/SendMsg.py new file mode 100644 index 00000000..53b2a63d --- /dev/null +++ b/test/framwork/msg/SendMsg.py @@ -0,0 +1 @@ +#发送消息 \ No newline at end of file