//! Python bindings for linear models
//!
//! This module provides Python bindings for linear models,
//! offering scikit-learn compatible interfaces with significant
//! performance improvements. Each model type is implemented in
//! its own submodule for better code organization.
// Common functionality shared across linear models
pub use *;
// Individual model implementations
// Re-export working model classes for PyO3
pub use PyARDRegression;
pub use PyBayesianRidge;
pub use PyElasticNet;
pub use PyLasso;
pub use PyLinearRegression;
pub use PyLogisticRegression;
pub use PyRidge;