10 lines
159 B
Java
Raw Normal View History

2015-02-16 15:53:58 -07:00
package org.etherpad_lite_client;
import java.net.URL;
public interface Request {
URL url = null;
public abstract String send() throws Exception;
}