navi

Obsidian-style interactive graph viewer for org-roam — native window, no Emacs package required.
Log | Files | Refs | README

lib.rs (176B)


      1 pub mod config;
      2 pub mod db;
      3 pub mod emacs;
      4 pub mod graph;
      5 
      6 pub use config::Config;
      7 pub use db::{load_graph, RawNode};
      8 pub use emacs::EmacsClient;
      9 pub use graph::{Graph, Node};