about summary refs log tree commit diff
path: root/MiniUtils.CSync/Program.cs
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-11-10 03:05:18 +0100
committerRory& <root@rory.gay>2025-11-10 03:05:18 +0100
commitd272c5b6f50e3f66a430fe4a6bbb3188f9adb1c8 (patch)
tree328d96076fe8c6fe6081f9083fcb3a498c41a683 /MiniUtils.CSync/Program.cs
parentMore stuff (diff)
downloadMiniUtils-d272c5b6f50e3f66a430fe4a6bbb3188f9adb1c8.tar.xz
MiniUtils changes, add uick ban sync hack bot HEAD master
Diffstat (limited to 'MiniUtils.CSync/Program.cs')
-rw-r--r--MiniUtils.CSync/Program.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/MiniUtils.CSync/Program.cs b/MiniUtils.CSync/Program.cs
new file mode 100644

index 0000000..a86852c --- /dev/null +++ b/MiniUtils.CSync/Program.cs
@@ -0,0 +1,10 @@ +using LibMatrix.Services; +using LibMatrix.Utilities.Bot; +using MiniUtils.CSync; + +var builder = Host.CreateApplicationBuilder(args); +builder.Services.AddHostedService<Worker>(); +builder.Services.AddRoryLibMatrixServices().AddMatrixBot(); + +var host = builder.Build(); +host.Run();