Files
examples/main.py
2026-02-28 05:39:23 +05:30

17 lines
324 B
Python

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