Refactor InteropFactory

This commit is contained in:
Michael Bucari-Tovo 2023-02-18 10:43:13 -07:00
parent 14b63c0883
commit a00849fb6f
12 changed files with 41 additions and 159 deletions

View file

@ -1,11 +1,7 @@
using AppScaffolding;
namespace MacOSConfigApp
namespace MacOSConfigApp
{
class Program : OSConfigBase
class Program
{
public override Type InteropFunctionsType => typeof(MacOSInterop);
static void Main() => new Program().Run();
static void Main() { }
}
}