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