#[macro_use] extern crate diesel; mod db; mod models; mod schema; use crate::models::*; use diesel::prelude::*; use dotenv::dotenv; use itconfig::config; config! { DATABASE_URL, } fn main() { dotenv().expect("dotenv setup to be successful"); config::init(); let connection = db::establish_connection(); let posts = get_posts(&connection); println!("Displaying {} posts", posts.len()); for post in posts { println!(); println!("{}", post.title); println!("----------"); println!("{}", post.body); } } fn get_posts(connection: &PgConnection) -> Vec { use crate::schema::posts::dsl::*; posts .filter(published.eq(true)) .limit(5) .get_results::(connection) .expect("Error loading posts") }