20 lines
489 B
C#
20 lines
489 B
C#
using Microsoft.AspNetCore.Routing;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using ModeusSchedule.Abstractions;
|
|
|
|
namespace SfeduSchedule.Plugin.UniVerse;
|
|
|
|
public sealed class UniVersePlugin : IPlugin
|
|
{
|
|
public string Name => "UniVerse";
|
|
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
services.AddHttpClient<IUniverseUserLookupService, UniverseUserLookupService>();
|
|
}
|
|
|
|
public void MapEndpoints(IEndpointRouteBuilder endpoints)
|
|
{
|
|
}
|
|
}
|