WindChat/windchat-business/src/main/java/com/windchat/im/business/impl/IRequestService.java

9 lines
224 B
Java
Raw Normal View History

2019-11-27 23:33:33 +08:00
package com.windchat.im.business.impl;
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 IRequestService {
public CommandResponse execute(Command command);
}