mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-08-08 03:43:20 +00:00
The implementation plan for Task 2 diverged from the design spec (export-sink-architecture-design.md), leaving ExportSink as a plain class with NotImplementedError bodies instead of the specified AbstractContextManager subclass. Use abc.ABC + @abstractmethod so a concrete sink missing a required method fails at instantiation rather than at first call.