Skip to content

Instantly share code, notes, and snippets.

View 3nt3's full-sized avatar
🦕

Nia 3nt3

🦕
  • BizFactory
  • Germany
  • 10:59 (UTC +02:00)
View GitHub Profile
@hendi
hendi / rocket-sqlx.rs
Last active February 4, 2024 05:23
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};