Core bug fixes and improvements

This commit is contained in:
2020-03-02 17:07:26 +04:00
parent dc2307d74e
commit 0c82a6a69f
2 changed files with 3 additions and 5 deletions
+1 -3
View File
@@ -6,8 +6,6 @@ namespace Kruzya.TelegramBot.Core.Extensions
public static class StartupExtension
{
public static IServiceCollection AddQueue<T>(this IServiceCollection collection)
{
return collection.AddSingleton<ConcurrentQueue<T>>();
}
=> collection.AddSingleton<ConcurrentQueue<T>>();
}
}