//! 游戏扫描模块
//!
//! 该模块提供了游戏文件扫描和元数据获取的功能。
//!
//! # 主要组件
//!
//! - [`GameScanner`] - 游戏扫描器,用于扫描本地游戏文件并获取元数据
//! - [`PathGroupResult`] - 路径分组结果
//! - 工具函数 - 版本提取、搜索关键词提取等
//!
//! # 示例
//!
//! ```no_run
//! use scanners::scan::GameScanner;
//!
//! #[tokio::main]
//! async fn main() {
//! let game_infos = GameScanner::new()
//! .with_dlsite_provider().await
//! .with_igdb_provider("client_id".to_string(), "client_secret".to_string()).await
//! .scan("D:/Games".to_string()).await;
//!
//! println!("找到 {} 个游戏", game_infos.len());
//! }
//! ```
// 子模块
// 公共导出
pub use ;
pub use ;
pub use ;