| 104 | |
| 105 | |
| 106 | class IconExportRequest(BaseModel): |
| 107 | mode: Literal["tft_rgb565", "u8g2_xbm"] |
| 108 | bg_color: str = "#000000" |
| 109 | icons: list[IconRef] = Field(..., min_length=1) |
| 110 | |
| 111 | |
| 112 | def build_icons_router(static_root: Path) -> APIRouter: |
nothing calls this directly
no outgoing calls
no test coverage detected