paladin-web 0.1.0

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
//! 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;
/// User management controller handlers.
#[allow(missing_docs)]
pub mod user_controller;