12 lines
234 B
Python
12 lines
234 B
Python
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"]
|