Issue #20: scaffold worker project

This commit is contained in:
Joseph Doherty
2026-04-26 16:37:23 -04:00
parent 420a813967
commit b42c3c8b3b
15 changed files with 306 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
using System;
namespace MxGateway.Worker;
public static class WorkerApplication
{
public static int Run(string[] args)
{
if (args is null)
{
throw new ArgumentNullException(nameof(args));
}
return 0;
}
}