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
41
42
43
44
45
//! anycms-core
//!
//! A unified API response library supporting multiple Rust web frameworks.
//!
//! ## Features
//! - `actix` (default): Support for actix-web framework
//! - `axum`: Support for axum framework
//! - `full`: Enable all framework integrations
//!
//! ## Example (Actix-web)
//! ```rust
//! use anycms_core::ApiResult;
//!
//! async fn get_user() -> ApiResult<User> {
//! let user = fetch_user().await?;
//! ApiResult::value(user)
//! }
//! ```
//!
//! ## Example (Axum)
//! ```rust
//! use anycms_core::ApiResult;
//!
//! async fn get_user() -> ApiResult<User> {
//! let user = fetch_user().await?;
//! ApiResult::value(user)
//! }
//! ```
// Framework-specific implementations
// Core exports (always available)
pub use ResultPagination;
pub use ;
// Framework-specific exports (available only when corresponding feature is enabled)
pub use actix;
pub use axum;