add user to org

This commit is contained in:
2025-11-10 21:37:12 -03:00
parent 9ff11c997c
commit 648da66c90
8 changed files with 286 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
from aws_lambda_powertools.event_handler.api_gateway import Router
from layercake.dynamodb import DynamoDBPersistenceLayer
from boto3clients import dynamodb_client
from config import USER_TABLE
router = Router()
dyn = DynamoDBPersistenceLayer(USER_TABLE, dynamodb_client)
@router.post('/register')
def register():
return {}