remove small test
This commit is contained in:
parent
05c6460d12
commit
a2fccd1f1c
|
@ -81,7 +81,13 @@ dependencies = [
|
|||
]
|
||||
|
||||
[[package]]
|
||||
name = "axum-demo"
|
||||
name = "bitflags"
|
||||
version = "1.3.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
||||
|
||||
[[package]]
|
||||
name = "breeze"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"axum",
|
||||
|
@ -95,12 +101,6 @@ dependencies = [
|
|||
"tower",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "bitflags"
|
||||
version = "1.3.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
||||
|
||||
[[package]]
|
||||
name = "bytes"
|
||||
version = "1.3.0"
|
||||
|
|
|
@ -75,7 +75,9 @@ pub async fn view(
|
|||
|
||||
println!("from cache! :D");
|
||||
|
||||
return "asdf".into_response();
|
||||
let data = cache_item.unwrap().clone();
|
||||
|
||||
return data.into_response();
|
||||
}
|
||||
|
||||
/* pub async fn view(
|
||||
|
|
Loading…
Reference in New Issue