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

View File

@@ -0,0 +1,9 @@
from pathlib import Path
def generate_routes(
spec_path: Path,
output_dir: Path,
*,
use_models: bool = ...,
models_module: str = ...,
) -> list[Path]: ...