/// Core module for FreedomLogger
///
/// Contains the main logger implementation and all supporting components:
/// - Logger: Main logging orchestrator
/// - LoggerConfig: Configuration management
/// - Writers: Text and JSON output handlers
/// - Configuration types: LogLevel, Pattern, etc.
// Re-export the main Logger struct
pub use Logger;
// Re-export configuration types for public API
pub use ;
// Re-export writers for potential advanced usage
pub use ;
// Import all core modules