Release axum and axum-extra (#2145)

Co-authored-by: Jonas Platte <[email protected]>
This commit is contained in:
David Pedersen
2023-08-03 19:58:54 +02:00
committed by GitHub
co-authored by Jonas Platte
parent 68333b2fcf
commit 3b92cd7593
14 changed files with 24 additions and 16 deletions
@@ -1,5 +1,5 @@
use axum::{
extract::{State, FromRef},
extract::{FromRef, State},
routing::get,
Router,
};
@@ -30,6 +30,6 @@ enum InnerState {}
impl FromRef<AppState> for InnerState {
fn from_ref(_: &AppState) -> Self {
todo!(":shrug:")
todo!("🤷")
}
}
@@ -1,5 +1,5 @@
use axum::{
extract::{State, FromRef},
extract::{FromRef, State},
routing::get,
Router,
};
@@ -31,6 +31,6 @@ enum InnerState {}
impl FromRef<AppState> for InnerState {
fn from_ref(_: &AppState) -> Self {
todo!(":shrug:")
todo!("🤷")
}
}