chore: 删除调试用代码

This commit is contained in:
helloplhm-qwq 2024-01-06 14:13:33 +08:00
parent 1dd9056d88
commit 49c6780c5b
No known key found for this signature in database
GPG Key ID: 6BE1B64B905567C7
2 changed files with 0 additions and 2 deletions

View File

@ -120,7 +120,6 @@ async def handle(request):
try:
query = dict(request.query)
print(query)
if (method in dir(modules) and query == {}):
return handleResult(await getattr(modules, method)(source, songId, quality))
elif ((method + '_with_query') in dir(modules) and query != {}):

View File

@ -190,7 +190,6 @@ async def other(method, source, songid, _):
}
async def other_with_query(method, source, t, _, query):
print(method)
try:
func = require('modules.' + source + '.' + method)
except: