Model for the wiki sections.
| 67 | |
| 68 | |
| 69 | class WikiSection(BaseModel): |
| 70 | """ |
| 71 | Model for the wiki sections. |
| 72 | """ |
| 73 | id: str |
| 74 | title: str |
| 75 | pages: List[str] |
| 76 | subsections: Optional[List[str]] = None |
| 77 | |
| 78 | |
| 79 | class WikiStructureModel(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected