9 lines
157 B
Python
9 lines
157 B
Python
from aws_lambda_powertools.event_handler.api_gateway import Router
|
|
|
|
router = Router()
|
|
|
|
|
|
@router.get('/userinfo')
|
|
def userinfo():
|
|
return {'name': 'test'}
|