☃️Small change

This commit is contained in:
Evil0ctal 2022-12-02 15:10:38 -08:00 committed by GitHub
parent ea6d834cdc
commit 58cf37df38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,8 +41,8 @@ Rate_Limit = config["Web_API"]["Rate_Limit"]
# 创建FastAPI实例 # 创建FastAPI实例
title = "Douyin TikTok Download/Scraper API-V1" title = "Douyin TikTok Download/Scraper API-V1"
version = '3.1.0' version = '3.1.1'
update_time = "2022/11/13" update_time = "2022/12/02"
description = """ description = """
#### Description/说明 #### Description/说明
<details> <details>
@ -120,6 +120,7 @@ class APIRoot(BaseModel):
Version: str = version Version: str = version
Update_time: str = update_time Update_time: str = update_time
Request_Rate_Limit: str = Rate_Limit Request_Rate_Limit: str = Rate_Limit
Web_APP: str
API_V1_Document: str API_V1_Document: str
API_V2_Document: str API_V2_Document: str
GitHub: str GitHub: str
@ -221,6 +222,7 @@ async def root():
"Version": version, "Version": version,
"Update_time": update_time, "Update_time": update_time,
"Request_Rate_Limit": Rate_Limit, "Request_Rate_Limit": Rate_Limit,
"Web_APP": "https://www.douyin.wtf/",
"API_V1_Document": "https://api.douyin.wtf/docs", "API_V1_Document": "https://api.douyin.wtf/docs",
"API_V2_Document": "https://api-v2.douyin.wtf/docs", "API_V2_Document": "https://api-v2.douyin.wtf/docs",
"GitHub": "https://github.com/Evil0ctal/Douyin_TikTok_Download_API", "GitHub": "https://github.com/Evil0ctal/Douyin_TikTok_Download_API",