Serializes Runic Workflows to DOT (Graphviz) format.
Examples
# Generate DOT graph
dot = Runic.Workflow.Serializers.DOT.serialize(workflow)
# Write to file and render
File.write!("workflow.dot", dot)
System.cmd("dot", ["-Tpng", "workflow.dot", "-o", "workflow.png"])