From 8fdf0d3a892ccbe94bc82190624388662af0d37f Mon Sep 17 00:00:00 2001 From: praveen pandey <114177903+praveenpandey77@users.noreply.github.com> Date: Wed, 26 Jul 2023 17:07:43 +0000 Subject: [PATCH] hello world changes --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 503414c..e3a17ad 100644 --- a/main.py +++ b/main.py @@ -16,7 +16,7 @@ # 3. Index route, opens automatically on http://127.0.0.1:8000 @app.get('/') def index(): - return {'message': 'Hello, World'} + return {'message': 'Hello-World'} # 4. Route with a single parameter, returns the parameter within a message # Located at: http://127.0.0.1:8000/AnyNameHere