code-graph-cli 3.0.2

Code intelligence engine for TypeScript/JavaScript/Rust/Python/Go — query the dependency graph instead of reading source files.
1
2
3
4
5
6
7
8
9
#[cfg(feature = "web")]
mod api;
#[cfg(feature = "web")]
mod server;
#[cfg(feature = "web")]
mod ws;

#[cfg(feature = "web")]
pub use server::serve;