Skip to content

Instantly share code, notes, and snippets.

View 3nt3's full-sized avatar
🦕

Nia 3nt3

🦕
  • BizFactory
  • Germany
  • 19:27 (UTC +02:00)
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};