ta import-tdb2

This commit is contained in:
Dustin J. Mitchell
2022-01-08 22:11:27 +00:00
parent 162a9eae95
commit 69d052603d
8 changed files with 200 additions and 4 deletions

View File

@@ -97,6 +97,13 @@ pub(crate) fn invoke(command: Command, settings: Settings) -> Result<(), crate::
return cmd::import::execute(&mut w, &mut replica);
}
Command {
subcommand: Subcommand::ImportTDB2 { path },
..
} => {
return cmd::import_tdb2::execute(&mut w, &mut replica, path.as_ref());
}
Command {
subcommand: Subcommand::Undo,
..