Skip to main content

paladin_web/
lib.rs

1//! Web server adapters for the Paladin AI orchestration framework.
2//!
3//! Provides HTTP server components using `actix-web` and `axum`, including
4//! user management REST endpoints and content delivery adapters.
5
6#![warn(missing_docs)]
7
8/// Web-facing adapter integrations.
9#[allow(missing_docs)]
10pub mod adapters;
11/// Application router composition for the user REST API.
12pub mod app;
13/// Authentication and RBAC middleware for the user REST API.
14pub mod auth_middleware;
15/// User management controller handlers.
16#[allow(missing_docs)]
17pub mod user_controller;