package net.saltymc.eaa.commands; import net.fabricmc.fabric.api.client.command.v1.FabricClientCommandSource; import net.minecraft.text.Text; public class EaaCommand implements Command{ @Override public int run(FabricClientCommandSource cs, String[] args) { cs.sendFeedback(Text.of("command catched!")); return 0; } }