Clean: Lint.

This commit is contained in:
Bryan A. Jones 2024-09-26 17:42:24 -05:00
parent dbf3bc6fc5
commit f1de281574
Failed to extract signature
1 changed files with 2 additions and 4 deletions

View File

@ -1,10 +1,8 @@
#[cfg(feature = "openssl")] #[cfg(feature = "openssl")]
extern crate tls_openssl as openssl; extern crate tls_openssl as openssl;
use { use actix_web::{web, App, HttpResponse, HttpServer};
actix_web::{web, App, HttpResponse, HttpServer}, use std::{sync::mpsc, thread, time::Duration};
std::{sync::mpsc, thread, time::Duration},
};
#[actix_rt::test] #[actix_rt::test]
async fn test_start() { async fn test_start() {