mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-01-03 11:28:30 -05:00
12 lines
237 B
C#
12 lines
237 B
C#
using AppScaffolding.OSInterop;
|
|
|
|
namespace LinuxConfigApp
|
|
{
|
|
class Program : OSConfigBase
|
|
{
|
|
public override Type InteropFunctionsType => typeof(LinuxInterop);
|
|
|
|
static void Main() => new Program().Run();
|
|
}
|
|
}
|