From bfd66244286a49ec25eec1b57043177ff5d983c0 Mon Sep 17 00:00:00 2001 From: Rakshit Kumar Singh Date: Sat, 28 Feb 2026 05:39:23 +0530 Subject: [PATCH] init --- main.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..2ecf566 --- /dev/null +++ b/main.py @@ -0,0 +1,16 @@ +from typing import Dict + +def main(event: Dict) -> Dict: + """ + Parameters + ---------- + event: Dict + The request being passed to the url. Ex: {"httpMethod": "POST", "body": {"name": "Silinoe"}} + + Returns + ------- + Dict + Response to the client. + + """ + return {"Response": "OK"}