13 lines
258 B
Markdown
13 lines
258 B
Markdown
```mermaid
|
|
flowchart TD
|
|
read --> src_paths
|
|
src_paths --> cfg
|
|
cfg --> parsed
|
|
cfg --> template_args
|
|
template_args --> dest_paths
|
|
src_paths --> template
|
|
parsed --> template
|
|
dest_paths --> template
|
|
template --> write
|
|
|
|
``` |