initial commit

This commit is contained in:
2025-12-09 15:40:47 +01:00
commit 91c731fef4
28 changed files with 690 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package cz.jzitnik.commands;
import cz.jzitnik.annotations.CommandImpl;
import cz.jzitnik.commands.models.Command;
import java.time.LocalDateTime;
@CommandImpl("datetime")
public class DateTimeCommand implements Command {
@Override
public String execute(String args) {
return LocalDateTime.now().toString();
}
}