mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
init: Dispatches to 'get' command
This commit is contained in:
parent
916ad2e3dc
commit
ec3f2748d9
1 changed files with 2 additions and 0 deletions
|
@ -65,6 +65,7 @@ void initializeEntities (CLI& cli)
|
|||
cli.entity ("command", "export");
|
||||
cli.entity ("command", "extensions");
|
||||
cli.entity ("command", "gaps");
|
||||
cli.entity ("command", "get");
|
||||
cli.entity ("command", "help");
|
||||
cli.entity ("command", "import");
|
||||
cli.entity ("command", "join");
|
||||
|
@ -264,6 +265,7 @@ int dispatchCommand (
|
|||
else if (command == "export") status = CmdExport (cli, rules, database );
|
||||
else if (command == "extensions") status = CmdExtensions ( rules, extensions);
|
||||
else if (command == "gaps") status = CmdGaps (cli, rules, database );
|
||||
else if (command == "get") status = CmdGet (cli, rules, database );
|
||||
else if (command == "help") status = CmdHelp (cli );
|
||||
else if (command == "import") status = CmdImport ( );
|
||||
else if (command == "join") status = CmdJoin (cli, rules, database );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue