File tree 1 file changed +1
-8
lines changed
1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -879,7 +879,6 @@ imports (ie: `from .routers import health`).
879
879
│ ├── main.py # Main lambda handler (app.py, index.py, handler.py)
880
880
│ └── routers # routers module
881
881
│ ├── __init__.py # this file makes "routers" a "Python package"
882
- │ ├── items.py # "items" submodule, e.g. from .routers import items
883
882
│ ├── health.py # "health" submodule, e.g. from .routers import health
884
883
│ └── users.py # "users" submodule, e.g. from .routers import users
885
884
├── template.yaml # SAM template.yml
@@ -927,11 +926,6 @@ imports (ie: `from .routers import health`).
927
926
Properties:
928
927
Path: /health/status
929
928
Method: GET
930
- ItemsPath:
931
- Type: Api
932
- Properties:
933
- Path: /items
934
- Method: GET
935
929
UserPath:
936
930
Type: Api
937
931
Properties:
@@ -962,13 +956,12 @@ imports (ie: `from .routers import health`).
962
956
from aws_lambda_powertools.logging.correlation_paths import API_GATEWAY_HTTP
963
957
from aws_lambda_powertools.utilities.typing import LambdaContext
964
958
965
- from .routers import health, items, users
959
+ from .routers import health, users
966
960
967
961
tracer = Tracer()
968
962
logger = Logger()
969
963
app = ApiGatewayResolver(proxy_type=ProxyEventType.ALBEvent)
970
964
app.include_router(health.router, prefix="/health")
971
- app.include_router(items.router)
972
965
app.include_router(users.router)
973
966
974
967
You can’t perform that action at this time.
0 commit comments