Update main.py
Browse files
main.py
CHANGED
@@ -77,7 +77,7 @@ async def get_user_story(link: str = None):
|
|
77 |
}
|
78 |
|
79 |
@fast_app.get("/user/raw/getchat")
|
80 |
-
async def
|
81 |
try:
|
82 |
chat_raw = (await client.get_chat(username)).raw
|
83 |
except Exception:
|
|
|
77 |
}
|
78 |
|
79 |
@fast_app.get("/user/raw/getchat")
|
80 |
+
async def get_chat_raw(username: str = None):
|
81 |
try:
|
82 |
chat_raw = (await client.get_chat(username)).raw
|
83 |
except Exception:
|