null_e/core/mod.rs
1//! Core types and traits for DevSweep
2//!
3//! This module contains the fundamental abstractions used throughout the application:
4//! - Project detection and representation
5//! - Artifact types and metadata
6//! - Scanner and cleaner traits
7
8mod project;
9mod artifact;
10mod scanner;
11mod cleaner;
12
13pub use project::*;
14pub use artifact::*;
15pub use scanner::*;
16pub use cleaner::*;