Files
telegram-bot/modules/Destiny2.WhereIsXur/WhereIsXur.cs
T

17 lines
434 B
C#
Raw Normal View History

2020-03-09 20:12:03 +04:00
using Kruzya.TelegramBot.Core;
using Kruzya.TelegramBot.Destiny2.WhereIsXur.Provider;
using Microsoft.Extensions.DependencyInjection;
2023-07-29 15:14:52 +03:00
namespace Kruzya.TelegramBot.Destiny2.WhereIsXur;
public class WhereIsXur : Module
2020-03-09 20:12:03 +04:00
{
2023-07-29 15:14:52 +03:00
public WhereIsXur(Core.Core core) : base(core)
2020-03-09 20:12:03 +04:00
{
2023-07-29 15:14:52 +03:00
}
2020-03-09 20:12:03 +04:00
2023-07-29 15:14:52 +03:00
public override void ConfigureServices(IServiceCollection services)
{
services.AddSingleton<IXurPlaceProvider, XurWiki>();
2020-03-09 20:12:03 +04:00
}
}