|
@@ -1,5 +1,5 @@
|
|
/*
|
|
/*
|
|
- * Copyright © 2019 L2J Server
|
|
|
|
|
|
+ * Copyright © 2019-2022 L2J Server
|
|
*
|
|
*
|
|
* This file is part of L2J Server.
|
|
* This file is part of L2J Server.
|
|
*
|
|
*
|
|
@@ -18,6 +18,9 @@
|
|
*/
|
|
*/
|
|
package com.l2jserver.cli.command;
|
|
package com.l2jserver.cli.command;
|
|
|
|
|
|
|
|
+import com.l2jserver.cli.L2JServerCLI;
|
|
|
|
+
|
|
|
|
+import picocli.CommandLine;
|
|
import picocli.CommandLine.Command;
|
|
import picocli.CommandLine.Command;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -30,6 +33,6 @@ public class HelpCommand extends AbstractCommand {
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public void run() {
|
|
public void run() {
|
|
- // TODO(Zoey76): Implement.
|
|
|
|
|
|
+ new CommandLine(L2JServerCLI.class).usage(System.out);
|
|
}
|
|
}
|
|
}
|
|
}
|