forked from sudo-rsingh/examples
17 lines
324 B
Python
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"}
|