Created
April 21, 2026 02:38
-
-
Save koorukuroo/a86cf90f570b05ae709edfe093346803 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| def lambda_handler(event, context): | |
| return { | |
| 'statusCode': 200, | |
| 'headers': { | |
| 'Content-Type': 'application/json', | |
| 'Access-Control-Allow-Origin': '*' | |
| }, | |
| 'body': json.dumps({ | |
| 'message': '안녕하세요! Lambda가 응답합니다.', | |
| 'method': event.get('httpMethod', 'UNKNOWN') | |
| }) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment