feat: support custom format, plain sql and cluster dumps

This commit is contained in:
2026-09-07 13:21:45 +00:00
parent 0f16949190
commit 77703485b9
6 changed files with 313 additions and 37 deletions

View File

@@ -46,6 +46,11 @@ impl CommandBuilder {
Self::default().args("docker compose")
}
pub fn arg(mut self, arg: impl Into<String>) -> Self {
self.args.push(arg.into());
self
}
pub fn args<T>(mut self, args: T) -> Self
where
Args: From<T>,