]> git.argeo.org Git - gpl/argeo-jcr.git/blob - jcr/JcrCommands.java
Prepare next development cycle
[gpl/argeo-jcr.git] / jcr / JcrCommands.java
1 package org.argeo.cli.jcr;
2
3 import org.argeo.api.cli.CommandsCli;
4
5 /** File utilities. */
6 public class JcrCommands extends CommandsCli {
7
8 public JcrCommands(String commandName) {
9 super(commandName);
10 addCommand("sync", new JcrSync());
11 }
12
13 @Override
14 public String getDescription() {
15 return "Utilities around remote and local JCR repositories";
16 }
17
18 }