Replace :emoji: codes with the actual emoji (#2144)

This commit is contained in:
Jonas Platte
2023-08-03 08:23:18 +00:00
committed by GitHub
parent 8af38763a5
commit 432289dd04
10 changed files with 14 additions and 14 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!("🤷")
}
}