izta 0.1.2

Izta is a drop-in job queue for Rust
Documentation
1
2
3
4
5
use postgres::{Connection, TlsMode};

pub fn establish_connection(db_url: &str) -> Connection {
    Connection::connect(db_url, TlsMode::None).expect("error connecting to DB")
}