diff --git a/app/routes.py b/app/routes.py index a23f49d..4515917 100644 --- a/app/routes.py +++ b/app/routes.py @@ -16,8 +16,9 @@ def index(): def index1(): # Получаем все GET-параметры params = request.args.to_dict() - + logging.warn(f"newOrder: {params}") # Просто выводим на экран (в ответ клиенту) + return f"Received params: {params}", 200 return "Hello GET"