10 lines
176 B
Python
10 lines
176 B
Python
from pathlib import Path
|
|
|
|
def generate_routes(
|
|
spec_path: Path,
|
|
output_dir: Path,
|
|
*,
|
|
use_models: bool = ...,
|
|
models_module: str = ...,
|
|
) -> list[Path]: ...
|