Subclass implementation of protobuf conversion. This should be implemented by each DataSource subclass.
(self)
| 342 | |
| 343 | @abstractmethod |
| 344 | def _to_proto_impl(self) -> DataSourceProto: |
| 345 | """ |
| 346 | Subclass implementation of protobuf conversion. |
| 347 | This should be implemented by each DataSource subclass. |
| 348 | """ |
| 349 | raise NotImplementedError |
| 350 | |
| 351 | def validate(self, config: RepoConfig): |
| 352 | """ |