nu_analytics/core/mod.rs
1//! Core module for common functionality across all targets
2
3pub mod config;
4pub mod metrics;
5pub mod metrics_export;
6pub mod models;
7pub mod planner;
8pub mod report;
9
10// Add core domain modules here as they're developed:
11// pub mod degree;
12// pub mod school;
13// pub mod database;
14// pub mod utils;
15
16/// Returns the current version of the `NuAnalytics` crate
17#[must_use]
18pub const fn get_version() -> &'static str {
19 env!("CARGO_PKG_VERSION")
20}
21
22// The `logger` module moved to standalone crate; use `logger` directly.