onebeyond/onebeyond-studio-core

View on GitHub
src/OneBeyond.Studio.Hosting/BackgroundServices/IBackgroundService.cs

Summary

Maintainability
A
0 mins
Test Coverage
namespace OneBeyond.Studio.Hosting.BackgroundServices;

public interface IBackgroundService
{
    Task ExecuteAsync(CancellationToken stoppingToken);
}