package com.juick.command; import com.juick.User; import com.juick.server.protocol.ProtocolListener; import java.util.regex.Pattern; /** * @author ma1uta */ public interface Command { Pattern pattern(); String help(); String execute(User sender, ProtocolListener protocolListener, String command); }