mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 07:57:20 +02:00
Commands - import
- Migrated handleImport to CmdImport.
This commit is contained in:
parent
4603bdb509
commit
a7d5641d00
9 changed files with 123 additions and 86 deletions
|
@ -45,6 +45,7 @@
|
|||
#include <CmdHelp.h>
|
||||
#include <CmdHistory.h>
|
||||
#include <CmdIDs.h>
|
||||
#include <CmdImport.h>
|
||||
#include <CmdInfo.h>
|
||||
#include <CmdInstall.h>
|
||||
#include <CmdLog.h>
|
||||
|
@ -98,6 +99,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
c = new CmdHistoryMonthly (); all[c->keyword ()] = c;
|
||||
c = new CmdHistoryAnnual (); all[c->keyword ()] = c;
|
||||
c = new CmdIDs (); all[c->keyword ()] = c;
|
||||
c = new CmdImport (); all[c->keyword ()] = c;
|
||||
c = new CmdInfo (); all[c->keyword ()] = c;
|
||||
c = new CmdInstall (); all[c->keyword ()] = c;
|
||||
c = new CmdLog (); all[c->keyword ()] = c;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue