A very performant and light (2mb in memory) link shortener and tracker. Written in Rust and React and uses Postgres/SQLite.
1use sqlx::PgPool; 2 3pub mod auth; 4pub mod error; 5pub mod handlers; 6pub mod models; 7 8#[derive(Clone)] 9pub struct AppState { 10 pub db: PgPool, 11}