mailiverse/gwt/src/core/util/HttpDelegateFactory.java

13 lines
200 B
Java
Raw Normal View History

package core.util;
import app.service.JSHttpDelegate;
import app.service.Main;
public class HttpDelegateFactory
{
static HttpDelegate create ()
{
return new JSHttpDelegate(Main.delegate);
}
}