skill-http 0.3.0

HTTP streaming server for Skill - REST API and web interface support
1
2
3
4
5
6
7
8
9
10
11
12
//! Analytics module for tracking search history and feedback
//!
//! Provides SQLite-based storage for:
//! - Search history with client metadata
//! - User feedback on search results
//! - Query performance metrics

pub mod db;
pub mod types;

pub use db::SearchAnalyticsDb;
pub use types::*;