| 308 | } |
| 309 | |
| 310 | MetadataResult ImportData(ShellState &state, const vector<string> &args) { |
| 311 | if (!state.ImportData(args)) { |
| 312 | return MetadataResult::FAIL; |
| 313 | } |
| 314 | return MetadataResult::SUCCESS; |
| 315 | } |
| 316 | |
| 317 | MetadataResult OpenDatabase(ShellState &state, const vector<string> &args) { |
| 318 | if (!state.OpenDatabase(args)) { |
nothing calls this directly
no test coverage detected