Skip to content

Commit 767c6b1

Browse files
committed
feat: First commit of Swagger JSON Schema reduction (Claude Code)
1 parent 9310c86 commit 767c6b1

5 files changed

Lines changed: 1696 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/*.dot
2+
/*.json
3+
/*.png

cli/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from cli import deduplicate_schema, schema_erd
2+
3+
4+
def register_all_commands(cli):
5+
"""Register all CLI commands."""
6+
deduplicate_schema.register_command(cli)
7+
schema_erd.register_command(cli)

0 commit comments

Comments
 (0)