bytedocs_rs/parser/mod.rs
1//! Parser module for different web frameworks.
2//!
3//! This module provides parsers for automatically detecting and extracting
4//! API routes from various Rust web frameworks including Axum, Warp, and Actix-web.
5
6pub mod axum;
7pub mod warp;
8pub mod actix_web;
9pub mod common;
10
11pub use axum::*;
12pub use warp::*;
13pub use actix_web::*;
14pub use common::*;