commit bfd66244286a49ec25eec1b57043177ff5d983c0 Author: Rakshit Kumar Singh Date: Sat Feb 28 05:39:23 2026 +0530 init 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"}