From 18e9118ec1e732075ea0152845aecd267dadd599 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Sat, 7 Jan 2023 21:09:14 +0100 Subject: [PATCH] feat(game): register apis to service collection --- Core/NosSmooth.Game/Extensions/ServiceCollectionExtensions.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Core/NosSmooth.Game/Extensions/ServiceCollectionExtensions.cs b/Core/NosSmooth.Game/Extensions/ServiceCollectionExtensions.cs index 1c971b8..2b44cde 100644 --- a/Core/NosSmooth.Game/Extensions/ServiceCollectionExtensions.cs +++ b/Core/NosSmooth.Game/Extensions/ServiceCollectionExtensions.cs @@ -65,6 +65,10 @@ public static class ServiceCollectionExtensions .AddPacketResponder(); serviceCollection + .AddTransient() + .AddTransient() + .AddTransient() + .AddTransient() .AddTransient() .AddTransient(); -- 2.48.1