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

11 lines
218 B
Java
Raw Normal View History

2019-11-27 23:33:33 +08:00
package com.windchat.im.business.api;
2019-07-29 23:42:16 +08:00
2019-11-27 23:36:54 +08:00
import com.windchat.common.command.Command;
import com.windchat.common.command.CommandResponse;
2019-07-29 23:42:16 +08:00
public interface IRequest {
public CommandResponse process(Command command);
}