1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! # Arqen
//!
//! Backend infrastructure for agent-ready applications.
//!
//! Arqen provides a complete backend toolkit including:
//! - HTTP server with Axum
//! - thingd integration for storage, events, search, and queues
//! - Typed agent tools and manifest generation
//! - Durable job workers with graceful shutdown
//! - Structured logging with tracing
//!
//! ## Quick Start
//!
//! ```rust,no_run
//! use arqen::http::{create_router, start_server};
//! use std::net::SocketAddr;
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
//! let addr: SocketAddr = "127.0.0.1:3000".parse()?;
//! let router = create_router();
//! start_server(addr, router).await?;
//! Ok(())
//! }
//! ```
// Re-export commonly used types at crate root
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use init_logging;