This repository has been archived on 2024-08-06. You can view files and clone it, but cannot push or open issues or pull requests.
chellaris-rust-api/src/db/mod.rs

5 lines
No EOL
112 B
Rust

use std::error::Error;
use sqlx::{Postgres, postgres::PgConnectOptions, PgPool, Pool};
pub(crate) mod schemas;