Coverage for gco / lambda_shared_sources.py: 100.00%

2 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-09-14 22:07 +0000

1"""Dependency-light inventory of canonical Lambda sources and checked-in copies. 

2 

3This module deliberately imports only the standard library. Deploy packaging, 

4diagram marker synchronization, and commit-time guards all consume this one map 

5without forcing code-only tooling to import the AWS CDK stack manager. 

6""" 

7 

8from __future__ import annotations 

9 

10LAMBDA_SHARED_SOURCE_TARGETS: dict[str, tuple[str, ...]] = { 

11 "lambda/proxy-shared/proxy_utils.py": ( 

12 "lambda/api-gateway-proxy/proxy_utils.py", 

13 "lambda/regional-api-proxy/proxy_utils.py", 

14 ), 

15 "lambda/tls-shared/backend_tls.py": ( 

16 "lambda/proxy-shared/backend_tls.py", 

17 "lambda/api-gateway-proxy/backend_tls.py", 

18 "lambda/regional-api-proxy/backend_tls.py", 

19 ), 

20}