summaryrefslogtreecommitdiff
path: root/lib/sew_stack/stitch_layers/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sew_stack/stitch_layers/__init__.py')
-rw-r--r--lib/sew_stack/stitch_layers/__init__.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/sew_stack/stitch_layers/__init__.py b/lib/sew_stack/stitch_layers/__init__.py
new file mode 100644
index 00000000..c56506b8
--- /dev/null
+++ b/lib/sew_stack/stitch_layers/__init__.py
@@ -0,0 +1,7 @@
+from .running_stitch import RunningStitchLayer
+
+all = [RunningStitchLayer]
+by_id = {}
+
+for layer_class in all:
+ by_id[layer_class.layer_id] = layer_class