Where is Xur?

This commit is contained in:
2020-03-09 20:12:03 +04:00
parent 768a0d064f
commit c42992f579
6 changed files with 117 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
using Kruzya.TelegramBot.Core;
using Kruzya.TelegramBot.Destiny2.WhereIsXur.Provider;
using Microsoft.Extensions.DependencyInjection;
namespace Kruzya.TelegramBot.Destiny2.WhereIsXur
{
public class WhereIsXur : Module
{
public WhereIsXur(Core.Core core) : base(core)
{
}
public override void ConfigureServices(IServiceCollection services)
{
services.AddSingleton<IXurPlaceProvider, XurWiki>();
}
}
}