WindChat/windchat-business/src/main/java/com/windchat/im/business/api/IRequest.java

11 lines
218 B
Java
Executable File

package com.windchat.im.business.api;
import com.windchat.common.command.Command;
import com.windchat.common.command.CommandResponse;
public interface IRequest {
public CommandResponse process(Command command);
}