Skip to content

Commit

Permalink
fix version
Browse files Browse the repository at this point in the history
  • Loading branch information
TIMOTHY ANDES committed Feb 29, 2024
1 parent f93c95b commit 4ccbd0e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lambda/main.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import os

def handler(event, context):
version = os.environ.get("VERSION", "0.0")
response_body = {
version = os.environ.get("VERSION", "0.0")
"message": "Hello World",
"version": version
}
return response_body
"message": "Hello World 👋",
"version": version,
}
return {"statusCode": 200, "body": response_body}

0 comments on commit 4ccbd0e

Please sign in to comment.