reference_query/core/mod.rs
1//! Language-agnostic core: the common symbol model and repository identity.
2//!
3//! Nothing here knows about a specific language. Language plugins (`crate::lang`)
4//! emit [`Symbol`]s; everything else in rq operates on that shape.
5
6mod identity;
7mod symbol;
8
9pub use identity::RepoIdentity;
10pub use symbol::{Kind, Symbol};