pgtemp 0.7.1

Start local postgres servers for testing without Docker
Documentation
1
2
3
4
5
6
7
8
9
//! Main binary for pgtemp. It just reads the arguments via clap and passes them to
//! `PgTempDaemon::from_args`
use clap::Parser;

#[tokio::main]
async fn main() {
    let args = pgtemp::PgTempDaemonArgs::parse();
    pgtemp::PgTempDaemon::from_args(args).await.start().await;
}