An object representing a successful operation with a result of type `T`.
| 5 | |
| 6 | @dataclass |
| 7 | class Success(Generic[T]): |
| 8 | "An object representing a successful operation with a result of type `T`." |
| 9 | value: T |
| 10 | |
| 11 | |
| 12 | @dataclass |
no outgoing calls
no test coverage detected
searching dependent graphs…