import java.rmi.*;

public interface IrcServer extends Remote {
  public void put(String text) throws RemoteException;
  public String get(int serial) throws RemoteException;
  public int getSerial() throws RemoteException;
}
