a3s-gateway 0.2.1

A3S Gateway - AI-native API gateway with reverse proxy, routing, and agent orchestration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Configuration providers — dynamic config loading and hot reload
//!
//! Watches configuration files for changes and triggers reload
//! without restarting the gateway. Supports DNS, health-based service discovery,
//! Docker container labels, and Kubernetes Ingress/CRD providers.

pub mod discovery;
pub(crate) mod dns;
pub mod docker;
pub mod file_watcher;
pub(crate) mod kubernetes;
pub(crate) mod kubernetes_crd;

pub use discovery::{DiscoveredService, DiscoveryProvider, ServiceMetadata};
pub use docker::{spawn_docker_loop, DockerProvider};
pub use file_watcher::FileWatcher;