001package com.mrivanplays.commandworker.bukkit;
002
003import com.mrivanplays.commandworker.core.Command;
004import org.bukkit.command.CommandSender;
005
006/**
007 * Represents a bukkit command.
008 *
009 * <p>Bukkit command stands for a command, with sender being the bukkit {@link CommandSender}
010 */
011public interface BukkitCommand extends Command<CommandSender> {}