| 32 | |
| 33 | |
| 34 | class Trace(pydantic.BaseModel): |
| 35 | id: UUID |
| 36 | spans: list["Span"] = pydantic.Field(default_factory=list) |
| 37 | |
| 38 | def __repr__(self) -> str: |
| 39 | return f"Trace(id={self.id})" |
| 40 | |
| 41 | |
| 42 | class Span(pydantic.BaseModel): |
no outgoing calls
no test coverage detected
searching dependent graphs…