Add new macros to use statement

This commit is contained in:
Glade Miller 2019-06-03 11:05:33 -06:00
parent 2027dc5e53
commit c3af0dc371
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
use actix_http::HttpService; use actix_http::HttpService;
use actix_http_test::TestServer; use actix_http_test::TestServer;
use actix_web::{http, web::Path, App, HttpResponse, Responder}; use actix_web::{http, web::Path, App, HttpResponse, Responder};
use actix_web_codegen::{delete, get, post, put}; use actix_web_codegen::{delete, get, post, put, head, connect, options, trace};
use futures::{future, Future}; use futures::{future, Future};
#[get("/test")] #[get("/test")]