Cosmos/source2/Cosmos.Launch.Slave/Program.cs
kudzu_cp 5bcabb8d8c
2012-07-01 18:05:01 +00:00

13 lines
284 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Launch.Slave {
class Program {
static int Main(string[] aArgs) {
var xHost = new DebugHost(aArgs);
return xHost.Go("Attached Slave");
}
}
}