summaryrefslogtreecommitdiff
path: root/lib/sew_stack/stitch_layers/__init__.py
blob: c56506b8cb82dff3616f5713fc915c5d30ad2bff (plain)
1
2
3
4
5
6
7
from .running_stitch import RunningStitchLayer

all = [RunningStitchLayer]
by_id = {}

for layer_class in all:
    by_id[layer_class.layer_id] = layer_class