Spaces:
Sleeping
Sleeping
| import dataclasses | |
| class BaseModel: | |
| index: str | |
| id: int | |
| title: str | |
| ctime: int | |
| user: str | |
| url: str | |
| type: str | |
| class GithubIssue(BaseModel): | |
| labels: list[str] | |
| type: str = "issue" | |
| class WikiPage: | |
| type: str = "wiki" | |