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
//! REST API server and endpoints.
//!
//! This crate provides a REST API for the CLMM LP Strategy Optimizer:
//! - Position management endpoints
//! - Strategy configuration and execution
//! - Pool information and analytics
//! - Real-time WebSocket updates
//! - OpenAPI documentation with Swagger UI
//! - JWT and API key authentication
/// Prelude module for convenient imports.
/// Authentication module.
/// Error types.
/// Request handlers.
/// Middleware components.
/// API request/response models.
/// OpenAPI documentation.
/// Route definitions.
/// Server configuration and startup.
/// Service layer for API operations.
/// Application state.
/// WebSocket handlers.
pub use ;
pub use ApiError;
pub use ApiDoc;
pub use ;
pub use ;
pub use AppState;