2007-04-28 20:50:45 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Reflection;
|
2008-07-23 15:35:39 +00:00
|
|
|
using GridProxy;
|
2007-04-28 20:50:45 +00:00
|
|
|
|
|
|
|
|
class ProxyMain
|
|
|
|
|
{
|
|
|
|
|
public static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
ProxyFrame p = new ProxyFrame(args);
|
2008-07-23 00:27:31 +00:00
|
|
|
ProxyPlugin analyst = new Analyst(p);
|
2007-07-20 16:02:52 +00:00
|
|
|
analyst.Init();
|
2008-07-23 00:27:31 +00:00
|
|
|
p.proxy.Start();
|
2007-04-28 20:50:45 +00:00
|
|
|
}
|
2007-01-03 19:53:48 +00:00
|
|
|
}
|