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

9 lines
224 B
Java
Executable File

package com.windchat.im.business.impl;
import com.windchat.common.command.Command;
import com.windchat.common.command.CommandResponse;
public interface IRequestService {
public CommandResponse execute(Command command);
}