hydro_lang/graph/
template.rs

1/// HTML template for ReactFlow visualization
2pub const REACTFLOW_TEMPLATE: &str = include_str!("template.html");
3
4pub fn get_template() -> &'static str {
5    REACTFLOW_TEMPLATE
6}