lol wakatime command
This commit is contained in:
parent
391ef46195
commit
294372941e
2 changed files with 38 additions and 1 deletions
|
|
@ -103,7 +103,8 @@ public class Hadder {
|
|||
new StopCommand(),
|
||||
new BlacklistCommand(),
|
||||
new PauseCommand(),
|
||||
new LoopCommand()), config, helpCommand);
|
||||
new LoopCommand(),
|
||||
new WakaTimeCommand()), config, helpCommand);
|
||||
|
||||
builder.addEventListeners(
|
||||
new MentionListener(rethink),
|
||||
|
|
|
|||
|
|
@ -0,0 +1,36 @@
|
|||
package com.bbn.hadder.commands.misc;
|
||||
|
||||
import com.bbn.hadder.commands.Command;
|
||||
import com.bbn.hadder.commands.CommandEvent;
|
||||
|
||||
/**
|
||||
* @author Skidder / GregTCLTK
|
||||
*/
|
||||
|
||||
public class WakaTimeCommand implements Command {
|
||||
|
||||
@Override
|
||||
public void executed(String[] args, CommandEvent event) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public String[] labels() {
|
||||
return new String[]{"wakatime", "wk"};
|
||||
}
|
||||
|
||||
@Override
|
||||
public String description() {
|
||||
return "Show WakaTime stats.";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String usage() {
|
||||
return "[WakaTime-User]";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String example() {
|
||||
return "@Skidder";
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue