config_service.proto (package foxhunt.config, 4 RPCs) was a subset of config.proto (package config, 12 RPCs). Migrated api_gateway to implement ConfigService from config.proto directly. Removed dead config_service() method from fxt client. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
387 B
Rust
14 lines
387 B
Rust
//! Configuration management module with PostgreSQL hot-reload and validation
|
|
|
|
pub mod authz;
|
|
pub mod endpoints;
|
|
pub mod manager;
|
|
pub mod validator;
|
|
|
|
pub use endpoints::GatewayConfigService;
|
|
pub use manager::{ConfigItem, ConfigurationManager};
|
|
pub use validator::{ConfigValidator, ValidationRules};
|
|
|
|
// Re-export RBAC types
|
|
pub use authz::{AuthzMetrics, AuthzService, PermissionResult};
|