tidy up imports

This commit is contained in:
Rob Watson 2020-07-03 18:17:00 +02:00
parent 323ec46982
commit 91073da873
1 changed files with 3 additions and 1 deletions

View File

@ -16,8 +16,10 @@ use actix_web::{middleware, web, App, HttpResponse, HttpServer};
use failure::Error;
use r2d2_sqlite::SqliteConnectionManager;
use rusqlite::params;
use std::{env, cmp, io};
use std::env;
use std::ops::Deref;
use std::cmp;
use std::io;
use serde_json::Value;
const DEFAULT_SIZE: usize = 25;