Skip to content

Instantly share code, notes, and snippets.

View phayes's full-sized avatar
⌨️

Patrick Hayes phayes

⌨️
View GitHub Profile
@hendi
hendi / rocket-sqlx.rs
Last active September 7, 2024 20:02
Rust: rocket with sqlx
#[macro_use] extern crate rocket;
use std::env;
use anyhow::Result;
use rocket::State;
use rocket::http::Status;
use sqlx::{Pool, Postgres};