using Microsoft.Extensions.Hosting; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EVCB_OCPP.WSServer.Helper { internal class DummyHostLifeTime : IHostLifetime { public Task StopAsync(CancellationToken cancellationToken) { return Task.CompletedTask; } public Task WaitForStartAsync(CancellationToken cancellationToken) { return Task.CompletedTask; } } }