This commit is contained in:
2026-02-28 05:39:23 +05:30
commit bfd6624428

16
main.py Normal file
View File

@@ -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"}