1 2 3 4 5 6 7 8 9 10 11
//! The view presented to the user. //! //! This module contains gtk widgets needed to present the graphical user interface. mod graph_view; mod node; mod port; pub use graph_view::GraphView; pub use node::Node; pub use port::Port;