uxum 0.9.5

Opinionated backend service framework based on axum
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Commonly imported types for use in applications.

pub use crate::{
    handler,
    reexport::{
        axum::{
            self,
            extract::{ConnectInfo, Path, Query, State},
            http::{self, HeaderValue, StatusCode},
            response::{IntoResponse, IntoResponseParts},
            Json,
        },
        mime, okapi, openapi3,
        schemars::{self, JsonSchema},
        tracing,
    },
    AppBuilder, AppConfig, Handle, HandleError, ServerBuilder, ServiceConfig,
};