actix-http: Make rustfmt happy for tls-rustls example

This commit is contained in:
asonix 2024-05-13 11:53:29 -05:00
parent 50aa448fd7
commit 56e224c43e
1 changed files with 1 additions and 2 deletions

View File

@ -12,12 +12,11 @@
//! Protocol: HTTP/1.1
//! ```
use tls_rustls_023 as rustls;
use std::io;
use actix_http::{Error, HttpService, Request, Response};
use actix_utils::future::ok;
use tls_rustls_023 as rustls;
#[actix_rt::main]
async fn main() -> io::Result<()> {