12 lines
257 B
Python
12 lines
257 B
Python
from pathlib import Path
|
|
|
|
from docforge.model import Project
|
|
|
|
|
|
class RendererConfig:
|
|
"""Renderer configuration container."""
|
|
|
|
def __init__(self, out_dir: Path, project: Project) -> None:
|
|
self.out_dir = out_dir
|
|
self.project = project
|