mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
CmdSplit: Implemented 'split' command
This commit is contained in:
parent
2a857c203d
commit
5e044bd845
4 changed files with 99 additions and 0 deletions
|
@ -72,6 +72,7 @@ void initializeEntities (CLI& cli)
|
|||
cli.entity ("command", "report");
|
||||
cli.entity ("command", "shorten");
|
||||
cli.entity ("command", "show");
|
||||
cli.entity ("command", "split");
|
||||
cli.entity ("command", "start");
|
||||
cli.entity ("command", "stop");
|
||||
cli.entity ("command", "tag");
|
||||
|
@ -269,6 +270,7 @@ int dispatchCommand (
|
|||
else if (command == "report") status = CmdReport (cli, rules, database, extensions);
|
||||
else if (command == "shorten") status = CmdShorten (cli, rules, database );
|
||||
else if (command == "show") status = CmdShow ( rules );
|
||||
else if (command == "split") status = CmdSplit (cli, rules, database );
|
||||
else if (command == "start") status = CmdStart (cli, rules, database );
|
||||
else if (command == "stop") status = CmdStop (cli, rules, database );
|
||||
else if (command == "summary") status = CmdSummary (cli, rules, database );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue