Changelog:

Backend:
- ADD Favorites routes
- EXTEND Index routes
- ADD FastAPI tags for routes

Frontend:
- ADD Next.JS Template
This commit is contained in:
Kentai Radiquum 2024-04-18 22:29:26 +05:00
parent 23ac963dee
commit 642277face
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
17 changed files with 1052 additions and 10 deletions

View file

@ -9,6 +9,14 @@ ENDPOINTS = {
"profile": f"{API_URL}/profile",
"filter": f"{API_URL}/filter",
"auth": f"{API_URL}/auth/signIn",
"user": {
"history": f"{API_URL}/history",
"watching": f"{API_URL}/profile/list/all/1",
"planned": f"{API_URL}/profile/list/all/2",
"watched": f"{API_URL}/profile/list/all/3",
"delayed": f"{API_URL}/profile/list/all/4",
"abandoned": f"{API_URL}/profile/list/all/5",
},
}
USER_AGENT = "AnixartApp/8.2.1-23121216 (Android 11; SDK 30; arm64-v8a;)"