Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion auto_dev/commands/augment.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,6 @@ def customs(ctx, component_type, auto_confirm, use_daos):
write_to_file(handler_path, handler_code, FileType.PYTHON)
logger.info(f"Handler code written to {handler_path}")

scaffolder.create_dialogues()
if use_daos:
scaffolder.create_exceptions()
logger.info("OpenAPI3 scaffolding completed successfully.")
Expand Down
4 changes: 2 additions & 2 deletions auto_dev/data/openapi/openapi_specification.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ info:
version: 1.0.0
description: A simple API for testing the OpenAPI Handler Generator
paths:
/users:
/api/users:
get:
summary: List users
responses:
Expand All @@ -31,7 +31,7 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/User'
/users/{userId}:
/api/users/{userId}:
get:
summary: Get a user
parameters:
Expand Down
Loading
Loading