feat: dump in every format import understands

This commit is contained in:
2026-09-07 14:03:21 +00:00
parent 77703485b9
commit ad269308cc
4 changed files with 175 additions and 46 deletions

View File

@@ -19,7 +19,9 @@ fn main() -> Result<()> {
},
cli::Commands::Postgres { command } => match command {
cli::Postgres::Import { path } => scripts::postgres::import(&path),
cli::Postgres::Dump { path, format } => scripts::postgres::dump(&path, format),
cli::Postgres::Dump { path, format, gzip } => {
scripts::postgres::dump(&path, format, gzip)
}
},
cli::Commands::Link { command } => match command {
cli::Link::Add { paths, force } => scripts::link::add(&paths, force),