Reorganize uses

This commit is contained in:
Bat
2018-04-24 10:21:39 +01:00
parent f0b08b2d6d
commit 0c9a1bfc3a
18 changed files with 144 additions and 145 deletions
+3 -3
View File
@@ -1,21 +1,21 @@
#![feature(plugin, custom_derive)]
#![plugin(rocket_codegen)]
extern crate bcrypt;
extern crate heck;
#[macro_use]
extern crate diesel;
extern crate dotenv;
extern crate rocket;
extern crate rocket_contrib;
extern crate bcrypt;
extern crate heck;
#[macro_use]
extern crate serde_json;
use diesel::pg::PgConnection;
use diesel::r2d2::{ConnectionManager, Pool};
use dotenv::dotenv;
use std::env;
use rocket_contrib::Template;
use std::env;
mod activity_pub;
mod db_conn;