paladin-web 0.5.1

Web server adapters for the Paladin AI orchestration framework (actix-web / axum)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Web server adapters for the Paladin AI orchestration framework.
//!
//! Provides HTTP server components using `actix-web` and `axum`, including
//! user management REST endpoints and content delivery adapters.

#![warn(missing_docs)]

/// Web-facing adapter integrations.
#[allow(missing_docs)]
pub mod adapters;
/// Application router composition for the user REST API.
pub mod app;
/// Authentication and RBAC middleware for the user REST API.
pub mod auth_middleware;
/// User management controller handlers.
#[allow(missing_docs)]
pub mod user_controller;