WindChat/windchat-message/src/main/java/com/windchat/im/message/api/IMessageService.java

8 lines
162 B
Java
Raw Normal View History

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