elif-core 0.7.1

Core architecture foundation for the elif.rs LLM-friendly web framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Bootstrap System for Automatic Configuration
//!
//! This module provides the bootstrap system for automatic provider configuration
//! and container setup based on module declarations.

pub mod providers;

pub use providers::*;

/// Re-exports for convenience
pub use crate::container::auto_config::{
    AutoConfigBuilder, ContainerAutoConfig, ValidationIssue, ConfigurationRule,
    ValidationReport,
};