tideway 0.1.0

A batteries-included Rust web framework built on Axum for building SaaS applications quickly
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! HTTP request/response types and extractors.
//!
//! Provides standardized response wrappers, form handling, query parsing,
//! and the RouteModule trait for organizing routes.

pub mod form;
pub mod path;
pub mod query;
pub mod response;
pub mod routes;

pub use form::{FileConfig, Form, Multipart};
pub use path::PathParams;
pub use query::{PaginationQuery, Query};
pub use response::{
    ApiResponse, CreatedResponse, JsonResponse, NoContentResponse, PaginatedData, PaginationMeta,
};
pub use routes::RouteModule;