init
This commit is contained in:
16
main.py
Normal file
16
main.py
Normal 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"}
|
||||||
Reference in New Issue
Block a user