summary refs log tree commit diff
path: root/MatrixSystemdBridge/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MatrixSystemdBridge/Program.cs')
-rw-r--r--MatrixSystemdBridge/Program.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/MatrixSystemdBridge/Program.cs b/MatrixSystemdBridge/Program.cs
new file mode 100644

index 0000000..8c011ee --- /dev/null +++ b/MatrixSystemdBridge/Program.cs
@@ -0,0 +1,7 @@ +using MatrixSystemdBridge; + +var builder = Host.CreateApplicationBuilder(args); +builder.Services.AddHostedService<Worker>(); + +var host = builder.Build(); +host.Run(); \ No newline at end of file