mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
20 lines
405 B
C#
20 lines
405 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Cosmos.Debug.HyperVServer
|
|
{
|
|
internal class Program
|
|
{
|
|
private static Task<int> Main(string[] args)
|
|
{
|
|
try
|
|
{
|
|
var server = new Server();
|
|
return server.RunAsync();
|
|
}
|
|
catch
|
|
{
|
|
return Task.FromResult(-1);
|
|
}
|
|
}
|
|
}
|
|
}
|