add cert pages

This commit is contained in:
2025-11-12 08:49:18 -03:00
parent fa87cf3e07
commit 850f620f78
16 changed files with 271 additions and 203 deletions

View File

@@ -7,11 +7,10 @@ from layercake.dynamodb import DynamoDBPersistenceLayer, KeyPair
from boto3clients import dynamodb_client
from config import USER_TABLE
from .add import router as add
from .emails import router as emails
from .orgs import router as orgs
__all__ = ['add', 'emails', 'orgs']
__all__ = ['emails', 'orgs']
router = Router()
dyn = DynamoDBPersistenceLayer(USER_TABLE, dynamodb_client)