add fastapi app get

dev-fastapi
Ivan Maslov 2 years ago
parent 3fdc316703
commit 13ed13af9c

@ -1171,6 +1171,12 @@ def WebRequestGet():
if hasattr(lCurrentThread, "request"):
return lCurrentThread.request
from fastapi import FastAPI
def WebAppGet() -> FastAPI:
"""L+,W+: Вернуть экземпляр веб сервера fastapi.FastAPI (app). Подробнее про app см. https://fastapi.tiangolo.com/tutorial/first-steps/
"""
return Server.app
def WebUserLoginGet(inAuthTokenStr: str=None) -> str:
"""L+,W+: Получить логин авторизованного пользователя. Если авторизация не производилась - вернуть None

Loading…
Cancel
Save