Skip to content

Commit 4387a67

Browse files
committed
Fix default alias of cHelper
1 parent 9291192 commit 4387a67

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/main/java/net/cofcool/sourcebox/internal/commandhelper/CommandManager.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ public class CommandManager {
2020
private static final List<Command> INIT_CMDS;
2121

2222
static {
23-
List<String> tags = List.of("#mytool");
23+
List<String> tags = List.of("#sourcebox");
2424
INIT_CMDS = List.of(
25-
new Command("mytool --tool=cHelper", "@helper", tags),
26-
new Command("mytool --tool=converts --cmd=now", "@mnow", tags),
27-
new Command("mytool --tool=converts --cmd=md5", "@mmd5", tags),
28-
new Command("mytool --tool=converts --cmd=hdate", "@mhdate", tags),
29-
new Command("mytool --tool=converts --cmd=timesp", "@mtimesp", tags),
30-
new Command("mytool --tool=converts --cmd=lower", "@mlower", tags),
31-
new Command("mytool --tool=converts --cmd=upper", "@mupper", tags)
25+
new Command("sourcebox --tool=cHelper", "@helper", tags),
26+
new Command("sourcebox --tool=converts --cmd=now", "@mnow", tags),
27+
new Command("sourcebox --tool=converts --cmd=md5", "@mmd5", tags),
28+
new Command("sourcebox --tool=converts --cmd=hdate", "@mhdate", tags),
29+
new Command("sourcebox --tool=converts --cmd=timesp", "@mtimesp", tags),
30+
new Command("sourcebox --tool=converts --cmd=lower", "@mlower", tags),
31+
new Command("sourcebox --tool=converts --cmd=upper", "@mupper", tags)
3232
);
3333
}
3434

0 commit comments

Comments
 (0)