mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-16 14:15:02 -05:00
13 lines
200 B
Java
13 lines
200 B
Java
|
package core.util;
|
||
|
|
||
|
import app.service.JSHttpDelegate;
|
||
|
import app.service.Main;
|
||
|
|
||
|
public class HttpDelegateFactory
|
||
|
{
|
||
|
static HttpDelegate create ()
|
||
|
{
|
||
|
return new JSHttpDelegate(Main.delegate);
|
||
|
}
|
||
|
}
|