Add bookmark command
[shpub.git] / src / shpub / Cli.php
index 57ccee781a5856aedf4373afe97c027f2f681a99..697d93438fe5fd5ea89405945069ff605de49921 100644 (file)
@@ -90,7 +90,7 @@ class Cli
     {
         $optParser = new \Console_CommandLine();
         $optParser->description = 'shpub';
     {
         $optParser = new \Console_CommandLine();
         $optParser->description = 'shpub';
-        $optParser->version = '0.0.4';
+        $optParser->version = '0.0.6';
         $optParser->subcommand_required = true;
 
         $optParser->addOption(
         $optParser->subcommand_required = true;
 
         $optParser->addOption(
@@ -160,10 +160,17 @@ class Cli
             )
         );
 
             )
         );
 
+        Command_Article::opts($optParser);
         Command_Note::opts($optParser);
         Command_Reply::opts($optParser);
         Command_Like::opts($optParser);
         Command_Repost::opts($optParser);
         Command_Note::opts($optParser);
         Command_Reply::opts($optParser);
         Command_Like::opts($optParser);
         Command_Repost::opts($optParser);
+        Command_Rsvp::opts($optParser);
+        Command_Bookmark::opts($optParser);
+
+        Command_Delete::opts($optParser);
+        Command_Undelete::opts($optParser);
+        Command_Update::opts($optParser);
 
         return $optParser;
     }
 
         return $optParser;
     }