gobby_core/lib.rs
1//! Shared primitives for Gobby CLI tools.
2//!
3//! Small, dependency-light helpers that multiple Gobby binaries (`gcode`,
4//! `gsqz`, `gloc`, `ghook`) share: project-root walk-up, project-id reading,
5//! bootstrap config resolution, daemon URL construction.
6
7pub mod bootstrap;
8pub mod daemon_url;
9pub mod project;