extern crate r2d2;
use PgConnection;
use ConnectionManager;
use env;
type ManagedPgConn = ;
/// Pool type is a simple wrapper over r2d2::Pool<ManagedPgConn> -> use it to pass around your
/// pool.
pub type Pool = Pool;
/// Establishes a connection to the libellis postgres database on your machine, as specified by your
/// DATABASE_URL environment variable. Returns a Pool.