package part1.Server.server; /** * @author wxx * @version 1.0 * @create 2024/2/12 11:26 */ public interface RpcServer { void start(int port); void stop(); }