1
2
3
4
5
6
7
//! A module containing exporters to various formats for `RailwayGraph`.
//!
//! This module provides the necessary components to export a `RailwayGraph` to different formats,
//! such as SVG. It may be expanded in the future to support more formats.

/// Export a RailwayGraph to SVG
pub mod svg;