1
0
mirror of https://github.com/actix/examples synced 2025-06-28 09:50:36 +02:00

cleanup and cargo fmt

This commit is contained in:
Nikolay Kim
2018-05-20 21:03:29 -07:00
parent 2d97219195
commit e4f1833215
28 changed files with 108 additions and 112 deletions

View File

@ -13,8 +13,10 @@ extern crate env_logger;
extern crate futures;
use actix::prelude::*;
use actix_web::{http, middleware, server, App, AsyncResponder, Error, FutureResponse,
HttpRequest, HttpResponse, Json, State};
use actix_web::{
http, middleware, server, App, AsyncResponder, Error, FutureResponse, HttpRequest,
HttpResponse, Json, State,
};
use futures::future::Future;
use juniper::http::graphiql::graphiql_source;
use juniper::http::GraphQLRequest;