create dedupe stub

This commit is contained in:
George Lacey 2025-07-12 12:37:16 +01:00
parent 57069c2b69
commit 46332e1921

13
src/layers/dedupe.py Normal file
View File

@ -0,0 +1,13 @@
from pathlib import Path
from dir import Root
from layer import Layer
class Dedupe(Layer):
def __init__(self, other: Root, log_path: Path):
super().__init__(log_path, "TCD")
self.other = other
def __process(self, root: Root):
pass