Skip to content

Instantly share code, notes, and snippets.

@pxjohnny

pxjohnny/main.rs Secret

Created March 27, 2021 11:45
fn get_random_confession(conn: &PgConnection) -> Result<Confession, diesel::result::Error> {
schema::confessions::table
.order(RANDOM)
.limit(1)
.first::<Confession>(conn)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment