remove small test

This commit is contained in:
minish 2022-12-28 23:05:28 -05:00 committed by minish
parent 05c6460d12
commit a2fccd1f1c
2 changed files with 142 additions and 140 deletions

14
Cargo.lock generated
View File

@ -81,7 +81,13 @@ dependencies = [
] ]
[[package]] [[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" version = "0.1.0"
dependencies = [ dependencies = [
"axum", "axum",
@ -95,12 +101,6 @@ dependencies = [
"tower", "tower",
] ]
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]] [[package]]
name = "bytes" name = "bytes"
version = "1.3.0" version = "1.3.0"

View File

@ -75,7 +75,9 @@ pub async fn view(
println!("from cache! :D"); println!("from cache! :D");
return "asdf".into_response(); let data = cache_item.unwrap().clone();
return data.into_response();
} }
/* pub async fn view( /* pub async fn view(