mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-29 00:00:18 +02:00
Fix docs links (#481)
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
In axum a "handler" is an async function that accepts zero or more
|
In axum a "handler" is an async function that accepts zero or more
|
||||||
["extractors"](#extractors) as arguments and returns something that
|
["extractors"](crate::extract) as arguments and returns something that
|
||||||
can be converted [into a response](crate::response).
|
can be converted [into a response](crate::response).
|
||||||
|
|
||||||
Handlers is where your application logic lives and axum applications are built
|
Handlers is where your application logic lives and axum applications are built
|
||||||
|
|||||||
@@ -67,6 +67,8 @@
|
|||||||
//! This error doesn't tell you _why_ your function doesn't implement
|
//! This error doesn't tell you _why_ your function doesn't implement
|
||||||
//! [`Handler`]. It's possible to improve the error with the [`debug_handler`]
|
//! [`Handler`]. It's possible to improve the error with the [`debug_handler`]
|
||||||
//! proc-macro from the [axum-debug] crate.
|
//! proc-macro from the [axum-debug] crate.
|
||||||
|
//!
|
||||||
|
//! [axum-debug]: https://docs.rs/axum-debug
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
body::{box_body, BoxBody},
|
body::{box_body, BoxBody},
|
||||||
|
|||||||
Reference in New Issue
Block a user