12 lines
227 B
C#
12 lines
227 B
C#
using GridProxy;
|
|
|
|
class ProxyMain
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
ProxyFrame p = new ProxyFrame(args);
|
|
ProxyPlugin analyst = new Analyst(p);
|
|
analyst.Init();
|
|
p.proxy.Start();
|
|
}
|
|
} |