feat: add type stubs for cli, codegen, and security modules

This commit is contained in:
2026-09-12 15:29:04 +05:30
parent 6e3939d68c
commit cb231a9c7e
6 changed files with 46 additions and 2 deletions

11
openapi_first/codegen.pyi Normal file
View File

@@ -0,0 +1,11 @@
from pathlib import Path
from .codegen_routes import generate_routes
def generate_models(
spec_path: Path,
output_path: Path,
pydantic_version: int = ...,
) -> None: ...
__all__ = ["generate_models", "generate_routes"]