9 lines
164 B
Python
9 lines
164 B
Python
from aws_lambda_powertools.event_handler.api_gateway import Router
|
|
|
|
router = Router()
|
|
|
|
|
|
@router.get('/', include_in_schema=False)
|
|
def get_webhooks():
|
|
return []
|