From aae38f490d511ecbf4595fd076609d00c56df358 Mon Sep 17 00:00:00 2001 From: asonix Date: Mon, 28 Nov 2022 19:43:55 -0600 Subject: [PATCH] Update readme --- actix-extractor/README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/actix-extractor/README.md b/actix-extractor/README.md index 9d0a45c..ecc430d 100644 --- a/actix-extractor/README.md +++ b/actix-extractor/README.md @@ -31,13 +31,10 @@ use sha2::Sha256; #[actix_web::main] async fn main() -> std::io::Result<()> { - /* HttpServer::new(|| App::new().route("/", web::post().to(protected))) .bind("127.0.0.1:8010")? .run() .await - */ - Ok(()) } async fn protected(signed_request: Signed) -> &'static str {