noetl-server 2.31.0

NoETL Control Plane - Async Rust server for workflow orchestration
Documentation
1
2
3
4
5
6
7
8
9
10
//! Configuration module for the NoETL Control Plane server.
//!
//! This module provides configuration loading from environment variables
//! using the `envy` crate for type-safe environment variable parsing.

mod app;
pub mod database;

pub use app::AppConfig;
pub use database::{DatabaseConfig, ShardConnection, ShardConnectionError, ShardingConfig};