mod links; use axum::Router; use sqlx::PgPool; pub fn router(db: PgPool) -> Router { Router::new().nest("/links", links::router(db)) }